tools/templates/main.cpp
author Xeli
Sat, 12 Nov 2011 14:52:48 +0100
branchhedgeroid
changeset 6234 1323a3681327
parent 359 59fbfc65fbda
permissions -rw-r--r--
these files must not be compiled because they cause compiler errors and noone likes those ;p

#include <QApplication>

#include "mainform.h"

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