d61c94341
김태훈
디지털 시계 추가
|
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
|