// class Time keeps time // mikhail nesterenko // 10/15/99 using namespace std; #ifndef TIME_H #define TIME_H class Time { public: // constructor, note no return value Time(int, int, int); void printMilitary() const; // prints time in military format void printStandard() const; // prints time in standard format private: int hour; // 0 - 23 int minute; // 0 - 59 int second; // 0 - 59 }; #endif // TIME_H