Add qt-widgets-app unit test

Change-Id: I502075f79d4abf6bd5c0d2080b2f543116499ace
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
This commit is contained in:
Nikolai Kosjar
2015-04-15 18:24:58 +02:00
parent 7b7f7c2e67
commit 11a7e71687
8 changed files with 112 additions and 2 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;
}