tools/templates/main.cpp
author Xeli
Thu, 20 Oct 2011 23:07:53 +0200
branchhedgeroid
changeset 6049 7bc38086d771
parent 359 59fbfc65fbda
permissions -rw-r--r--
wops missed this one: removed a 'fix' eclipse put in there

#include <QApplication>

#include "mainform.h"

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