00001 // 00002 // Calendar.h 00003 // DistributedCalendar 00004 // 00005 // Created by Jagdish on 7/26/10. 00006 // Copyright 2010 __MyCompanyName__. All rights reserved. 00007 // 00008 00033 #import <Foundation/Foundation.h> 00034 00038 @interface Calendar : NSObject { 00039 00040 NSMutableArray* calendar; 00041 } 00042 00043 @property (retain) NSMutableArray* calendar; 00044 00045 // Singleton - one instance for the whole app 00050 + (Calendar*)getInstance; 00051 00052 00053 // will return the number of events in the calendar 00058 - (int)numberOfEvents; 00059 00060 00061 @end