mirror of
https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git
synced 2025-02-10 04:50:47 +08:00
18 lines
246 B
C
18 lines
246 B
C
![]() |
#ifndef DIGITALCLOCK_H
|
||
|
#define DIGITALCLOCK_H
|
||
|
|
||
|
#include <QLCDNumber>
|
||
|
|
||
|
class CDigitalClock : public QLCDNumber
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
CDigitalClock(QWidget *parent = nullptr);
|
||
|
|
||
|
private slots:
|
||
|
void showTime();
|
||
|
};
|
||
|
|
||
|
#endif // DIGITALCLOCK_H
|