aboutsummaryrefslogtreecommitdiff
path: root/mainwindow.cpp
blob: ebaa88c6337748c1295cca48d229a475cb7b40c0 (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;
}

Generated with cgit - Back to sebastiano.tronto.net