This commit is contained in:
2025-02-19 13:58:04 +01:00
parent 2b2b4c9ec2
commit acca5fb630
382 changed files with 375 additions and 0 deletions

14
mainwindow.cpp Normal file
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;
}