home *** CD-ROM | disk | FTP | other *** search
- //
- // iCalParser.h
- // quickCal
- //
- // Created by chris struhar on 1/21/05.
- // Copyright 2005 __MyCompanyName__. All rights reserved.
- //
-
- #import <Cocoa/Cocoa.h>
- #import "calEvent.h"
-
- @interface iCalParser : NSObject {
- int count;
- NSCalendarDate *today;
- }
-
- - (id)init;
- - (id)initWithDate:(NSCalendarDate *)theDate;
- - (BOOL)shouldAddEvent:(calEvent *)event;
- - (NSArray *)parseCalendar:(NSData*)calData;
- @end
-