tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 02 Oct 2018 21:26:25 +0200
changeset 13825 cf7626f46bb2
parent 4425 2314bb0c433d
permissions -rw-r--r--
IFNDEF custom exception handlung away in pas2c builds

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

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