tools/templates/main.cpp
author unc0rr
Mon, 19 May 2014 22:46:02 +0400
changeset 10246 8da91cd7a32a
parent 359 59fbfc65fbda
permissions -rw-r--r--
Inform frontend of lines which didn't change anything on the map in advanced drawn maps mode

#include <QApplication>

#include "mainform.h"

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