//****************************************************************** // TestTime program // This is a very simple client of the original TimeType class // declared in file timetyp1.h //****************************************************************** #include #include "timetyp8.h" using namespace std; int main() { TimeType time1; TimeType time2; TimeType time3; int count; time1.Set(5, 30, 0); time2.Set(0, 0, 0); time2 = time1; cout << "time1: "<time1) cout << "time2 is greater than time1" << endl; else cout << "time2 is NOT greater than time1" << endl; cout << "Resetting time1:" << endl; time1.Set(23, 59, 55); cout<< " Now the difference between time1 and time2 from - is "; time3=time1-time2; cout<