// 22.5HV2 Software Engineering II // Unit 2 Exercise 1 class Clock { public: Clock(int=0,int=0,int=0); // constructor for Clock class void tick(); // public methods void show_time(); void normalise(); private: // Private data of class int hour, minute, second; };