Files
Rennbahn/countdown.cpp
2017-12-25 08:12:10 +01:00

16 lines
257 B
C++

#include "countdown.h"
#include "unistd.h"
Countdown::Countdown() {
this->running = 1;
}
void Countdown::setStop() {
this->running = 0;
}
void Countdown::run() {
while (this->running) {
sleep(1);
emit CountdownUpdate();
}
}