diff options
Diffstat (limited to 'libsowatch')
-rw-r--r-- | libsowatch/main.cpp | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/libsowatch/main.cpp b/libsowatch/main.cpp deleted file mode 100644 index d0eae3f..0000000 --- a/libsowatch/main.cpp +++ /dev/null @@ -1,35 +0,0 @@ -#include <QtGui/QApplication> -#include <QtConnectivity/QBluetoothAddress> - -#include "metawatchsimulator.h" -#include "metawatch.h" -#include "watchserver.h" -#include "testwatchlet.h" -#include "testdeclarativewatchlet.h" - -using namespace sowatch; -QTM_USE_NAMESPACE - -static Watch *watch; -static WatchServer *server; - -int main(int argc, char *argv[]) -{ - QApplication a(argc, argv); - - if (a.arguments().count() > 1) { - watch = new MetaWatch(QBluetoothAddress(a.arguments().at(1))); - } else { - watch = new MetaWatchSimulator(); - } - - /* D0:37:61:C3:C7:99 */ - server = new WatchServer(watch); - new TestDeclarativeWatchlet(server); - new TestWatchlet(server); - - server->runWatchlet("com.javispedro.sowatch.testdeclarativewatchlet"); - //server->runWatchlet("com.javispedro.sowatch.testwatchlet"); - - return a.exec(); -} |