aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui/mainwindow.cpp
blob: 7e4ca777259c11858d7f977747745a80bf1755ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "ui/mainwindow.h"
#include "ui_mainwindow.h"

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

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