tools/drawMapTest/main.cpp
author Wuzzy <almikes@aol.com>
Sun, 01 Oct 2017 00:46:58 +0200
changeset 12629 705dde538519
parent 4425 2314bb0c433d
permissions -rw-r--r--
ACF1, fruit01, WxW: Make sure the selection dialogues never disappear on their own

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

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