tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 24 Sep 2017 04:13:04 +0200
changeset 12512 0ed3fda9b61d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Remove white stripes in flags of armenia, ireland, turkey

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

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