initial commit

This commit is contained in:
2014-09-05 14:12:37 +02:00
commit 990a6ad03d
29 changed files with 5477 additions and 0 deletions

16
countdown.h Normal file
View 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