tools/templates/main.cpp
author unc0rr
Sun, 18 Aug 2013 17:29:17 +0400
changeset 9401 2af7bea32e5e
parent 359 59fbfc65fbda
permissions -rw-r--r--
- Some fixes to official server build - Encode stored message, fixes bug of r3f4c3fc146c2

#include <QApplication>

#include "mainform.h"

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