00001 // 00002 // DeleteOperation.h 00003 // DistributedCalendar 00004 // 00005 // Created by Jagdish on 8/9/10. 00006 // Copyright 2010 __MyCompanyName__. All rights reserved. 00007 // 00008 00009 00034 #import <Foundation/Foundation.h> 00035 00036 #import "Event.h" 00037 00038 00042 @interface DeleteOperation : NSObject <NSCoding, NSCopying>{ 00043 NSInteger position; 00044 Event *event; 00045 } 00046 00047 @property (nonatomic) NSInteger position; 00048 @property (nonatomic, retain) Event *event; 00049 00055 -(id)copyWithZone:(NSZone *)zone; 00056 00057 @end