#ifndef STOPWATCHCLOCK_H #define STOPWATCHCLOCK_H class stopWatch { private: bool overflow; unsigned short int hour, min, sec; public: stopWatch (); ~stopWatch (); int getSec (); int getMin (); int getHour (); void incSec (); void incMin (); void incHour (); bool isOverflowSet (); void reset (); void setTime (int hour, int min, int sec); }; #endif