-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmain.cpp
More file actions
32 lines (29 loc) · 686 Bytes
/
Copy pathmain.cpp
File metadata and controls
32 lines (29 loc) · 686 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
/**
****************************************************************************************
*
* @file main.cpp
*
* @brief main entry
*
* Copyright (C) ViewTool 2018
*
* $Rev: 1.0$
*
* Change History:
* 12/21/18: Initial release, working on capturing BLE data, see captured data in file: 2018.12.21-14.52.34.txt
*
****************************************************************************************
*/
#include "common.h"
//#include <QtGui/QApplication>
#include <QApplication>
#include "app_config.h"
#include "am_aci.h"
#include "hollong.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
vtool w;
w.show();
return a.exec();
}