// time.h // declaration of class Time // CS210 S'03 Ray S.babcock 2/11/03 // #ifndef TIME_H_ #define TIME_H_ class Time { public: Time(); // constructor ~Time(); // destructor void setTime(int,int,int); // set hour, minute, second void printUniversal(); // print universal time format void printStandard(); // print standard time format private: int hour; // 0-23 (24 hour clock) int minute; // 0-59 int second; // 0-59 }; // end class Time #endif