TimeLabel.hpp 387 Bytes
Newer Older
Matteo Spanio's avatar
update  
Matteo Spanio committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#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