tools/templates/main.cpp
author unC0Rr
Wed, 17 Nov 2010 16:19:28 +0300
changeset 4353 671d66ba3af6
parent 359 59fbfc65fbda
permissions -rw-r--r--
Dumb parser of pascal, and a program which lists unit dependencies

#include <QApplication>

#include "mainform.h"

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