tools/templates/main.cpp
author unc0rr
Wed, 22 Jan 2014 14:45:33 +0400
changeset 10050 9616052bd333
parent 359 59fbfc65fbda
permissions -rw-r--r--
Check if frontend was too lazy to actually send drawn map data to the server

#include <QApplication>

#include "mainform.h"

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