aboutsummaryrefslogtreecommitdiff
path: root/QtClient/mainwindow.cpp
diff options
context:
space:
mode:
authorUnavailableDev <69792062+UnavailableDev@users.noreply.github.com>2022-11-24 08:30:18 +0100
committerUnavailableDev <69792062+UnavailableDev@users.noreply.github.com>2022-11-24 08:30:18 +0100
commitebd10762c3ec399dac391a6d45526008ec90b8d9 (patch)
treebee2405102b49c2a7cb745ff18db99d61d09d018 /QtClient/mainwindow.cpp
parentb0c562297ad257cc1a527f19be64ca30730e843f (diff)
creation of a base Qt folder/project
Diffstat (limited to 'QtClient/mainwindow.cpp')
-rw-r--r--QtClient/mainwindow.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/QtClient/mainwindow.cpp b/QtClient/mainwindow.cpp
new file mode 100644
index 0000000..41a26bd
--- /dev/null
+++ b/QtClient/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;
+}
+