tools/templates/main.cpp
author unc0rr
Tue, 24 Nov 2015 09:00:43 +0300
branchqmlfrontend
changeset 11427 1895a9504a35
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Add the rest of protocol commands - Fix some generator glitches

#include <QApplication>

#include "mainform.h"

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