register init (again)

This commit is contained in:
Vítor Santos Costa
2015-07-06 11:54:33 +01:00
parent 2cf9902dfe
commit 421dee6881
8 changed files with 109 additions and 83 deletions

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