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

0
client/inc/.gitempty Normal file
View File

View File

View File

View File

@@ -0,0 +1,19 @@
#pragma once
#include <QMainWindow>
QT_BEGIN_NAMESPACE
namespace Ui { class MainWindow; }
QT_END_NAMESPACE
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
Ui::MainWindow *ui;
};