00001 // 00002 // Policy.h 00003 // DistributedCalendar 00004 // 00005 // Created by Jagdish on 8/30/10. 00006 // Copyright 2010 __MyCompanyName__. All rights reserved. 00007 // 00008 00034 #import <Foundation/Foundation.h> 00035 00039 @interface Policy : NSObject <NSCoding> { 00040 00041 NSInteger policyPeerID; 00042 NSMutableArray* policy; 00043 NSInteger version; 00044 } 00045 00046 @property (nonatomic, retain) NSMutableArray* policy; 00047 @property (nonatomic) NSInteger policyPeerID; 00048 @property (nonatomic) NSInteger version; 00049 00050 @end