tools/templates/main.cpp
author unc0rr
Sat, 15 Aug 2015 16:23:00 +0300
branchqmlfrontend
changeset 11050 9b7c8c5a94e0
parent 359 59fbfc65fbda
permissions -rw-r--r--
Some fixes

#include <QApplication>

#include "mainform.h"

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