initial commit

This commit is contained in:
2019-02-04 14:08:51 +01:00
parent 746272439d
commit afb0775798
5 changed files with 138 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#include "cmainwindow.h"
#include "ui_cmainwindow.h"
cMainWindow::cMainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::cMainWindow)
{
ui->setupUi(this);
}
cMainWindow::~cMainWindow()
{
delete ui;
}