structure

This commit is contained in:
moerp
2021-05-22 22:44:55 +02:00
parent dec5fa0fa1
commit c2f713535a
8 changed files with 0 additions and 0 deletions

15
sources/mainwindow.cpp Normal file
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;
}