-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
40 lines (32 loc) · 701 Bytes
/
main.cpp
File metadata and controls
40 lines (32 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <QCoreApplication>
#include "USBConnector.h"
#include "BTTest.h"
#include <QString>
#include <QDebug>
#include "BTServer.h"
#include "BTClient.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
/*
USBConnector usb;
usb.openUSB ();
*/
/*
QString cmd (argv[1]);
if (cmd == "s")
{
qDebug () << "Starting bt server...";
BTServer server;
server.startListen ();
} else
{
BTClient client;
client.connectToServer ();
}
*/
BTClient* btclient = new BTClient();
//quint32 id = bttest.addServiceRecord ();
//bttest.removeServiceRecord (id);
return a.exec ();
}