This commit is contained in:
2019-02-20 14:57:54 +01:00
parent 3a0b3d59ce
commit bd4df296b0
8 changed files with 452 additions and 0 deletions

26
manager.cpp Normal file
View File

@@ -0,0 +1,26 @@
#include "manager.h"
#include "bt.h"
Manager mgmt;
Manager::Manager(QObject *parent) : QObject(parent)
{
}
void Manager::trigger() {
printf("HALLO");
BT* bt = new BT();
bt->start();
#ifdef ANDROID
#else
#endif
}