class TravelClock : public Clock { public: TravelClock(bool mil, string loc, double off); int get_hours() const; string get_location() const; private: string location; int time_difference; };