2018-01-27 22:14:00 +08:00
|
|
|
|
#include "mainwindow.h"
|
2017-10-17 21:45:34 +08:00
|
|
|
|
#include "ui_mainwindow.h"
|
2018-04-18 20:34:40 +08:00
|
|
|
|
#include "qqtuserserialprotocol.h"
|
2017-11-10 12:07:58 +08:00
|
|
|
|
|
2017-11-23 19:12:48 +08:00
|
|
|
|
MainWindow::MainWindow ( QWidget* parent ) :
|
|
|
|
|
QMainWindow ( parent ),
|
|
|
|
|
ui ( new Ui::MainWindow )
|
2017-10-17 21:45:34 +08:00
|
|
|
|
{
|
2017-11-23 19:12:48 +08:00
|
|
|
|
ui->setupUi ( this );
|
2018-01-27 22:14:00 +08:00
|
|
|
|
|
2017-10-18 08:05:58 +08:00
|
|
|
|
// serialport example
|
|
|
|
|
// tcpsocket example
|
|
|
|
|
// websocket?
|
|
|
|
|
//
|
2017-10-17 21:45:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MainWindow::~MainWindow()
|
|
|
|
|
{
|
|
|
|
|
delete ui;
|
|
|
|
|
}
|