//
//  SVerticalView.h
//  SVInSVDemo
//
//  Created by loufq on 12-4-27.
//  Copyright (c) 2012年 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h> 
#import "ATPagingView.h"

@class SVerticalView;
@protocol SVerticalViewDelegate <NSObject>

- (void)kwm_getSVerticalViewCurrnetPage:(NSInteger)currentPage;

@end

@interface SVerticalView : UIView<ATPagingViewDelegate>
@property (nonatomic)  ATPagingView* myPV;
@property(nonatomic,assign) int curIndex;
@property(nonatomic,strong)NSArray* ds;
@property(weak,nonatomic) id<SVerticalViewDelegate>delegate;



@end