tools/templates/main.cpp
author unc0rr
Fri, 07 Jun 2013 15:23:04 +0400
changeset 9145 6b51a32e48ed
parent 359 59fbfc65fbda
permissions -rw-r--r--
Fix more warnings (lol @ icegun "consts")

#include <QApplication>

#include "mainform.h"

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