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

  1. // date2.h
  2.  
  3. struct Date
  4. {
  5.     int month;
  6.     int day;
  7.     int year;
  8.  
  9.     // Constructors
  10.     Date();
  11.     Date(int, int, int);
  12.       
  13.     Date * interval(const Date&);
  14. };
  15.  
  16.