tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Fri, 02 Nov 2018 15:48:58 +0100
changeset 14080 af203fb307a7
parent 4425 2314bb0c433d
permissions -rw-r--r--
Typecast the ASCII ESC char

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

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