Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00032 #import <Foundation/Foundation.h>
00033
00034 #import "Event.h"
00035
00036
00040 @interface UpdateOperation: NSObject <NSCoding, NSCopying>{
00041 NSInteger position;
00042 Event *oldEvent;
00043 Event *newEvent;
00044 }
00045
00046 @property (nonatomic) NSInteger position;
00047 @property (nonatomic, retain) Event *oldEvent;
00048 @property (nonatomic, retain) Event *newEvent;
00049
00055 -(id)copyWithZone:(NSZone *)zone;
00056
00057 @end