tools/templates/main.cpp
author koda
Wed, 02 May 2012 14:35:54 +0100
changeset 6997 2356bf174df8
parent 359 59fbfc65fbda
permissions -rw-r--r--
remove old ukeys hooks from pascalexport (definitely breaking the ios port, will have to work on that, but for now sheepluva and xeli will be happy *hopefully*)

#include <QApplication>

#include "mainform.h"

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