tools/templates/main.cpp
author sheepluva
Thu, 06 May 2010 09:25:13 +0000
changeset 3432 83cef0f08a86
parent 359 59fbfc65fbda
permissions -rw-r--r--
* get rid of some fpc hints (redundant/superfluous includes) * fix broken if causing segfault (whoops :D)

#include <QApplication>

#include "mainform.h"

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