home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_11_02 / 1102124a < prev    next >
Text File  |  1992-12-10  |  142b  |  12 lines

  1. // date.h: A simple date class
  2.  
  3. struct Date
  4. {
  5.     int month;
  6.     int day;
  7.     int year;
  8.     
  9.     Date * interval(const Date&);
  10. };
  11.  
  12.