tools/templates/main.cpp
author koda
Thu, 08 Jul 2010 23:06:21 +0200
changeset 3630 2c7a9d5aa18c
parent 359 59fbfc65fbda
permissions -rw-r--r--
fix static land loading on desktop add further checks to the sporadic init bug on iFoos

#include <QApplication>

#include "mainform.h"

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