tools/templates/main.cpp
author sheepluva
Thu, 07 Apr 2011 23:54:09 +0200
changeset 5121 2d34ec60992c
parent 359 59fbfc65fbda
permissions -rw-r--r--
added some comments in order to confuse the GSoC students as much as possible ;D

#include <QApplication>

#include "mainform.h"

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