tools/drawMapTest/main.cpp
author antonc27 <antonc27@mail.ru>
Tue, 03 May 2016 00:59:38 +0200
changeset 11788 0327d20fa4a1
parent 4425 2314bb0c433d
permissions -rw-r--r--
[bug #66] - Create '/Logs' folder if not exists

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

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