tools/templates/main.cpp
author unc0rr
Thu, 27 Oct 2011 21:33:18 +0400
changeset 6217 ef53ba841791
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Remove some old unused code - Fix some warnings, including "empty if"

#include <QApplication>

#include "mainform.h"

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