home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / m / mar93.zip / 1103100B < prev    next >
Text File  |  1993-01-05  |  312b  |  17 lines

  1. #include <iostream.h>
  2. #include "date7.h"
  3.  
  4. ostream& operator<<(ostream& os, const Date& d)
  5. {
  6.     os << d.month << '/' << d.day << '/' << d.year;
  7.     return os;
  8. }
  9.  
  10. istream& operator>>(istream& is, Date& d)
  11. {
  12.     char slash;
  13.     is >> d.month >> slash >> d.day >> slash >> d.year;
  14.     return is;
  15. }
  16.  
  17.