tools/templates/main.cpp
author Xeli
Fri, 24 Jun 2011 09:36:59 +0200
branchhedgeroid
changeset 5339 bc8560452143
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fixed the incomplete merge of rev: 22c1f4833a86

#include <QApplication>

#include "mainform.h"

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