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

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

@class SHorizontalView;
@protocol SHorizontalViewDelegate <NSObject>

- (void)kwm_getSHorizontalViewCurrnetPage:(NSInteger)currentPage;

@end

@interface SHorizontalView : UIView<ATPagingViewDelegate,SVerticalViewDelegate>{
    ATPagingView* myPV; 
    SVerticalView* svVertical;
}

@property(nonatomic,strong)NSArray* ds;
@property(nonatomic,strong)NSIndexPath* curIndexPath;
@property(weak, nonatomic)id<SHorizontalViewDelegate>delegate;



@end