summaryrefslogtreecommitdiff
path: root/tests/plugins/pack/qtapp/src/mainwindow.cpp
blob: 7002a54eaf950ca84cbd88977bf6b344bd55f606 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
    , ui(new Ui::MainWindow)
{
    ui->setupUi(this);
    setWindowTitle("Qt Widget App");
}

MainWindow::~MainWindow()
{
    delete ui;
}