tools/drawMapTest/main.cpp
author unc0rr
Wed, 19 Mar 2014 12:53:07 +0400
changeset 10205 fc99e124ba4d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Prevent intersections with segment from last to first point, adjust size of details

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

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