initialize qt project

This commit is contained in:
2025-06-22 17:54:05 +02:00
parent b9f68783eb
commit 99eabc1a72
6 changed files with 0 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;
}