#ifndef TIME_LABEL_H #define TIME_LABEL_H /** * @brief A label that displays the current time in the format hh:mm:ss.mms * @todo Implement this class: * - Implement the constructor * - Implement the destructor * - Move functions from time.h to here */ class TimeLabel { private: /* data */ public: TimeLabel(/* args */); ~TimeLabel(); }; #endif // TIME_LABEL_H