tools/templates/main.cpp
author unC0Rr
Wed, 17 Nov 2010 16:31:30 +0300
changeset 4355 4554c4df9f1a
parent 359 59fbfc65fbda
permissions -rw-r--r--
A program which finds a cycles in units dependencies to run: unitCycles `ls *.pas`

#include <QApplication>

#include "mainform.h"

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