cut  1.2.1-pre1
timelabel.hpp
Go to the documentation of this file.
1 
10 #ifndef TIMELABEL_HPP
11 #define TIMELABEL_HPP
12 
13 #include <QObject>
14 #include <QString>
15 #include <QVariant>
16 #include <QWidget>
17 #include <QLabel>
18 
26 class TimeLabel : public QLabel {
27  Q_OBJECT
28 
29 public:
30  explicit TimeLabel(QWidget *parent = Q_NULLPTR);
32 
33 signals:
34 
35 public slots:
36  void update();
37 
38 private:
39 
40 };
41 
42 #endif // TIMELABEL_HPP
TimeLabel::TimeLabel
TimeLabel(QWidget *parent=Q_NULLPTR)
TimeLabel::update
void update()
TimeLabel
Label that prints the current time.
Definition: timelabel.hpp:26
TimeLabel::~TimeLabel
~TimeLabel()