home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / cdactual / demobin / share / program / C / ANSICPP.ZIP / EX09004.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-24  |  240 b   |  15 lines

  1. // ex09004.cpp
  2. // Using a base and a derived class
  3. #include <iostream.h>
  4. #include "timeday.h"
  5. #include "timezone.h"
  6.  
  7. main()
  8. {
  9.     Time tm(23, 15, 45);
  10.     tm.display();
  11.     cout << '\n';
  12.     TimeZone tz(10, 26, 0, est);
  13.     tz.display();
  14. }
  15.