tools/templates/main.cpp
author unc0rr
Tue, 15 Feb 2011 21:12:22 +0300
changeset 4941 90572c338e60
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix for my last commit (which was all nonsense)

#include <QApplication>

#include "mainform.h"

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