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

11
countdown.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "countdown.h"
#include "unistd.h"
Countdown::Countdown()
{
}
void Countdown::run(){
while(1){
sleep(1);
emit CountdownUpdate();
}
}