tools/templates/main.cpp
author koda
Thu, 02 Jul 2009 00:58:46 +0000
changeset 2218 59a9bebc4988
parent 359 59fbfc65fbda
permissions -rw-r--r--
-Smaxx' solution for compiling frontend with static libs in windows -reverted to realloc() for more compatibility

#include <QApplication>

#include "mainform.h"

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