summaryrefslogtreecommitdiffstats
path: root/tests/guiapp/main.cpp
blob: 494c410516c15c3376a04501e9a2ebe73c0d57c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <QtGui/QApplication>
#include "maindialog.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainDialog dlg;
    dlg.show();

    return a.exec();
}