// declaration for class of TimeType objects class TimeType { public: void Set(int, int, int); // set the time ("setter" function) void Increment(); // increment the timer by one second // involves changing object's data void Display() const; // output the time -- accessor // "getter" functions -- all accessors int GetHours() const; int GetMinutes() const; int GetSeconds() const; private: int hours; int minutes; int seconds; };