tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Wed, 07 Feb 2018 08:30:50 +0100
changeset 12917 8cc24173cd71
parent 4425 2314bb0c433d
permissions -rw-r--r--
Add the flag of Scotland (uk_scotland)

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

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