summaryrefslogtreecommitdiff
path: root/tests/projects/qt/with_ts/src/mainwindow.cpp
blob: ec2cba1ee1a8eabd65b854bdce2592027fe34078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
}

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