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

12 lines
165 B
C++

#include "countdown.h"
#include "unistd.h"
Countdown::Countdown()
{
}
void Countdown::run(){
while(1){
sleep(1);
emit CountdownUpdate();
}
}