TimeLabel.h 387 Bytes
Newer Older
Matteo's avatar
update  
Matteo committed
1
2
3
#ifndef TIME_LABEL_H
#define TIME_LABEL_H

Matteo's avatar
Matteo committed
4
5
6
7
8
9
10
11
12
/**
 * @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:
Matteo's avatar
update  
Matteo committed
13
    /* data */
Matteo's avatar
Matteo committed
14
   public:
Matteo's avatar
update  
Matteo committed
15
16
17
18
    TimeLabel(/* args */);
    ~TimeLabel();
};

Matteo's avatar
Matteo committed
19
#endif  // TIME_LABEL_H