Initial commit

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-06-18 14:19:11 +02:00
parent bde01ae1b2
commit cb03e1f91f
5 changed files with 103 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}