tools/templates/main.cpp
author nemo
Sun, 21 Feb 2010 16:28:46 +0000
changeset 2833 9c2accd92cc7
parent 359 59fbfc65fbda
permissions -rw-r--r--
Check for empty hat, somehow claymore managed this, this should be a workaround pending figuring out how he did it.

#include <QApplication>

#include "mainform.h"

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