aboutsummaryrefslogtreecommitdiff
path: root/confui/mainwindow.cpp
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-11-30 13:44:59 +0100
committerlonkaars <loek@pipeframe.xyz>2022-11-30 13:44:59 +0100
commit390726a83913552e63d4499d216ea6f370d6adad (patch)
treeeabfb4cb6d2057c6160d687f2aaede5f24f15692 /confui/mainwindow.cpp
parent0daf8c516e48551098cc53f3f88cb52e9a47df35 (diff)
move QtClient to confuiHEADmaster
Diffstat (limited to 'confui/mainwindow.cpp')
-rw-r--r--confui/mainwindow.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/confui/mainwindow.cpp b/confui/mainwindow.cpp
new file mode 100644
index 0000000..41a26bd
--- /dev/null
+++ b/confui/mainwindow.cpp
@@ -0,0 +1,15 @@
+#include "mainwindow.h"
+#include "ui_mainwindow.h"
+
+MainWindow::MainWindow(QWidget *parent)
+ : QMainWindow(parent)
+ , ui(new Ui::MainWindow)
+{
+ ui->setupUi(this);
+}
+
+MainWindow::~MainWindow()
+{
+ delete ui;
+}
+