tools/drawMapTest/main.cpp
author sheepluva
Wed, 02 Sep 2015 01:25:29 +0200
changeset 11059 659427d9fd17
parent 4425 2314bb0c433d
permissions -rw-r--r--
display circle for custom build dist values, display nothing if no limit. map borders are not taken into account at this point

#include <QtGui/QApplication>
#include "mainwindow.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}