tools/templates/main.cpp
author koda
Sun, 27 Mar 2011 01:53:59 +0100
changeset 5053 a767954cfa03
parent 359 59fbfc65fbda
permissions -rw-r--r--
this should help people hacking the cmake files (removes old comments, BUNDLE and other macros, updates to INSTALL file)

#include <QApplication>

#include "mainform.h"

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