tools/templates/main.cpp
author nemo
Sun, 04 Nov 2012 17:24:14 -0500
changeset 7956 61da79e83330
parent 359 59fbfc65fbda
permissions -rw-r--r--
Causes AI fail. Needs testing 'cause at some point, I thought this was needed for portal, I don't remember *why*

#include <QApplication>

#include "mainform.h"

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