//File : Time.h //Author : Andre Long via Tony Gaddis(Textbook Author) //Due : November 24, 2004 //Description : This given class will be used as a base class for Miltime #ifndef TIME_H #define TIME_H #include using std::cout; using std::endl; class Time { protected: long hour; long min; long sec; public: Time() { hour=0; min=0; sec=0; } Time(long h, long m, long s) { hour=h; min=m; sec=s; } long getHour() { return hour; } long getMin() { return min; } long getSec() { return sec; } void setHour(long x) { hour=x; } void setMin(long y) { min=y; } void setSec(long z) { sec=z; } void toString() { cout<