tools/drawMapTest/main.cpp
author unc0rr
Wed, 24 Feb 2016 22:37:03 +0300
changeset 11573 8fd1808b12ed
parent 4425 2314bb0c433d
permissions -rw-r--r--
Recognize ghost points in db interaction tool (no storing yet)

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

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