Qt Simulation

This commit is contained in:
Ollo
2023-08-13 22:12:38 +02:00
parent a201193d58
commit 1c3c64f447
7 changed files with 172 additions and 0 deletions

View File

@@ -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;
}