summaryrefslogtreecommitdiffstats
path: root/src/qt-test.cpp
blob: 045ee50bfcdc4e48caeb06c6ae54c2bd4067ca8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * This file is part of MXE.
 * See index.html for further information.
 */

#include <QApplication>
#include <QtPlugin>
#include "ui_qt-test.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    QMainWindow w;
    Ui::MainWindow u;
    u.setupUi(&w);
    w.show();
    return a.exec();
}