tools/templates/main.cpp
author unc0rr
Wed, 17 Nov 2010 20:28:42 +0300
changeset 4361 64ea345ab655
parent 359 59fbfc65fbda
permissions -rw-r--r--
Move variables from uConsts to uVariables

#include <QApplication>

#include "mainform.h"

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