summaryrefslogtreecommitdiff
path: root/tests/plugins/pack/qtapp/src/main.cpp
blob: aee3b08624eb26c6afd9e14b8e383eecb80f720e (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "mainwindow.h"
#include <QApplication>

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