Code
This commit is contained in:
26
manager.cpp
Normal file
26
manager.cpp
Normal 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
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user