digitalclock.h 250 Bytes edit raw blame history 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #ifndef DIGITALCLOCK_H #define DIGITALCLOCK_H #include <QLabel> class DigitalClock : public QLabel { Q_OBJECT public: explicit DigitalClock(QWidget *parent = 0); signals: private slots: void updateView(); }; #endif // DIGITALCLOCK_H