17 lines
222 B
C++
17 lines
222 B
C++
#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
|