diff options
Diffstat (limited to 'QtClient/mainwindow.h')
-rw-r--r-- | QtClient/mainwindow.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/QtClient/mainwindow.h b/QtClient/mainwindow.h new file mode 100644 index 0000000..57eb614 --- /dev/null +++ b/QtClient/mainwindow.h @@ -0,0 +1,27 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include <QMainWindow> +#include <QtSerialPort/QSerialPort> + +#include <QDebug> + +QT_BEGIN_NAMESPACE +namespace Ui { class MainWindow; } +QT_END_NAMESPACE + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + MainWindow(QWidget *parent = nullptr); + ~MainWindow(); + +private slots: + void on_pushButton_clicked(); + +private: + Ui::MainWindow *ui; +}; +#endif // MAINWINDOW_H |