aboutsummaryrefslogtreecommitdiff
path: root/app/main.cpp
blob: 15262f25346cf9897a43f692f33da9672e040552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream>
#include <qapplication.h>
#include <qpushbutton.h>

#include "mainwindow.hpp"

using namespace std;

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    MainWindow main;
    main.show();

    return a.exec();
}