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

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