tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Wed, 27 Sep 2017 04:28:34 +0200
changeset 12549 d8af6f9b51c6
parent 4425 2314bb0c433d
permissions -rw-r--r--
Disable SD in ACF6 and ASA: The first stop

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

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