initial commit
This commit is contained in:
16
countdown.h
Normal file
16
countdown.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef COUNTDOWN_H
|
||||
#define COUNTDOWN_H
|
||||
#include <QtCore>
|
||||
|
||||
class Countdown : public QThread
|
||||
{
|
||||
Q_OBJECT
|
||||
protected:
|
||||
void run();
|
||||
public:
|
||||
Countdown();
|
||||
signals:
|
||||
void CountdownUpdate();
|
||||
};
|
||||
|
||||
#endif // COUNTDOWN_H
|
||||
Reference in New Issue
Block a user