#ifndef ABSTRACT_WATCH_MODE_H #define ABSTRACT_WATCH_MODE_H class clockObject { protected: unsigned short int hour, min, sec; public: clockObject (); ~clockObject (); int getHour (); int getMin (); int getSec (); virtual void pulse () = 0; }; #endif