tools/templates/main.cpp
author nemo
Fri, 12 Jun 2009 00:39:36 +0000
changeset 2154 3d2917be12c3
parent 359 59fbfc65fbda
permissions -rw-r--r--
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters

#include <QApplication>

#include "mainform.h"

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