#ifndef COUNTDOWN_H #define COUNTDOWN_H #include class Countdown : public QThread { Q_OBJECT protected: void run(); public: Countdown(); signals: void CountdownUpdate(); }; #endif // COUNTDOWN_H