22 lines
352 B
C++
22 lines
352 B
C++
#ifndef ONTIMECHECKTHREAD_H
|
|
#define ONTIMECHECKTHREAD_H
|
|
|
|
#include <QObject>
|
|
|
|
class OnTimeCheckThread :public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
OnTimeCheckThread(QObject *parent);
|
|
~OnTimeCheckThread();
|
|
|
|
static bool isSystemRunning();
|
|
|
|
public slots:
|
|
void brush();
|
|
signals:
|
|
void changeTab(int index);
|
|
};
|
|
|
|
#endif // ONTIMECHECKTHREAD_H
|