tools/templates/main.cpp
author koda
Wed, 01 Dec 2010 00:58:03 +0100
changeset 4437 05192cdbce9b
parent 359 59fbfc65fbda
permissions -rw-r--r--
un-break build (wrong merge in uConsole) and update project file with the new sources

#include <QApplication>

#include "mainform.h"

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