tools/templates/main.cpp
author unc0rr
Sun, 05 Jan 2014 10:54:03 +0400
branchwebgl
changeset 9954 bf51bc7e2808
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Fix build via pas2c - Remove pas2c hacks in uLandTemplates

#include <QApplication>

#include "mainform.h"

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