summaryrefslogtreecommitdiffstats
path: root/qt-ui/mainwindow.cpp
blob: d3e5603bec3304ffa55c7a290a870dcec19f38cc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "mainwindow.h"
#include "ui_mainwindow.h"

#include <QVBoxLayout>
#include <QtDebug>

MainWindow::MainWindow() : ui(new Ui::MainWindow())
{
	ui->setupUi(this);
}

void MainWindow::on_actionNew_triggered()
{
    qDebug() << "actionNew";
}

#include "mainwindow.moc"