summaryrefslogtreecommitdiffstats
path: root/tests/auto/qapplication/modal/main.cpp
blob: e1d39cf4469c70d04759f0f4ccb4630f24e14128 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <QtGui>

#include <QApplication>
#include "base.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    base *b = new base();
    return app.exec();
}