Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00034 #import <Foundation/Foundation.h>
00035
00036 #import "Event.h"
00037
00038
00042 @interface InsertOperation : NSObject <NSCoding, NSCopying>{
00043 NSInteger position;
00044 Event *event;
00045 NSMutableArray *seqOfPositionsW;
00046 }
00047
00048 @property (nonatomic) NSInteger position;
00049 @property (nonatomic, retain) Event *event;
00050 @property (nonatomic, retain) NSMutableArray *seqOfPositionsW;
00051
00057 -(id)copyWithZone:(NSZone *)zone;
00058
00059
00060 @end