home *** CD-ROM | disk | FTP | other *** search
/ MacWorld UK 2005 May / MW_UK_2005_05.iso / 16 iCal utilities / quickCal.sit / quickCal / quickCal.app / Contents / Resources / iCalParser.h < prev    next >
Encoding:
Text File  |  2005-02-21  |  410 b   |  22 lines

  1. //
  2. //  iCalParser.h
  3. //  quickCal
  4. //
  5. //  Created by chris struhar on 1/21/05.
  6. //  Copyright 2005 __MyCompanyName__. All rights reserved.
  7. //
  8.  
  9. #import <Cocoa/Cocoa.h>
  10. #import "calEvent.h"
  11.  
  12. @interface iCalParser : NSObject {
  13.     int count;
  14.     NSCalendarDate *today;
  15. }
  16.  
  17. - (id)init;
  18. - (id)initWithDate:(NSCalendarDate *)theDate;
  19. - (BOOL)shouldAddEvent:(calEvent *)event;
  20. - (NSArray *)parseCalendar:(NSData*)calData;
  21. @end
  22.