Files
Rennbahn/countdown.h
2014-09-05 14:12:37 +02:00

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