tools/templates/main.cpp
author Xeli
Tue, 05 Jul 2011 23:29:32 +0200
branchhedgeroid
changeset 5406 a3f98a8a0b80
parent 359 59fbfc65fbda
permissions -rw-r--r--
fixed Data path

#include <QApplication>

#include "mainform.h"

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