home *** CD-ROM | disk | FTP | other *** search
/ APDL Public Domain 1 / APDL_PD1A.iso / program / c / c_plus_tut / hpp / clock < prev    next >
Encoding:
Text File  |  1994-04-05  |  412 b   |  20 lines

  1.           // This is the game clock.  It increments once for every
  2.           //  move, the increment being accomplished in the method
  3.           //  named inc_and_print_time.
  4.  
  5. #ifndef CLOCKHPP
  6. #define CLOCKHPP
  7.  
  8. class clock {
  9.    int hour;
  10.    int minute;
  11. public:
  12.    clock(void);
  13.    int present_hour(void)    {return hour;}
  14.    int present_minute(void)  {return minute;}
  15.    void inc_and_print_time(void);
  16. };
  17.  
  18. #endif
  19.  
  20.