home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1995 August / NEBULA.mdf / SourceCode / MiscKit1.2.6 / Palettes / MiscCalendarPalette / MiscCalendarView.subproj / DateDelegateProtocol.h next >
Encoding:
Text File  |  1994-05-08  |  315 b   |  23 lines

  1. @protocol DateDelegate
  2.  
  3. - (int)day;
  4. - (int)month;
  5. - (int)year;
  6.  
  7. - setYear:(int)year month:(int)month day:(int)day;
  8.  
  9. - (int)numberOfDaysInMonth;
  10. - (int)startDayOfMonth;
  11.  
  12. - incrementMonth;
  13. - decrementMonth;
  14.  
  15. - incrementYear;
  16. - decrementYear;
  17.  
  18. - (const char *)monthStringValue;
  19. - (const char *)dateStringValue;
  20.  
  21. @end
  22.  
  23.