aboutsummaryrefslogtreecommitdiffstats
path: root/tests/cppmodelmanager/testdata_guiproject1/mainwindow.cpp
blob: 495189aa3b0ceeb22d1c11184b809e40f557a0b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright license

#include "mainwindow.h"
#include "ui_mainwindow.h"

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    ui->setupUi(this);
}

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