tools/templates/main.cpp
author koda
Thu, 27 Dec 2012 17:01:02 +0100
changeset 8337 bf237f7f1d94
parent 359 59fbfc65fbda
permissions -rw-r--r--
add a splashscreen while the main interface is loading (enabled on all platforms, disable if it doesn'n't look good

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}