moved files

This commit is contained in:
2018-01-07 19:01:46 +01:00
parent fcddeb6d20
commit 8ee7dddf1d
5 changed files with 0 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;
}