Initial commit with empty qt client and empty 'server'

This commit is contained in:
2026-01-30 20:34:48 +01:00
commit 31f118d77d
18 changed files with 234 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
#include "ui/mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent), ui(new Ui::MainWindow) {
ui->setupUi(this);
}
MainWindow::~MainWindow() { delete ui; }