summaryrefslogtreecommitdiffstats
path: root/src/qt-test.cpp
blob: 8e23cd250ed7562f381b6e51b3e2835b562c8e6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
 * This file is part of MXE. See LICENSE.md for licensing information.
 */

#include <QApplication>

#include "qt-test.hpp"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    a.aboutQt();
    return a.exec();
}