tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 22 Mar 2018 17:44:06 +0100
changeset 13268 825f558c51b8
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix some artifacts in contour of horizont.png of Planes theme

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

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