tools/drawMapTest/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Mon, 26 Nov 2018 21:13:49 +0100
changeset 14309 055eae933482
parent 4425 2314bb0c433d
permissions -rw-r--r--
Touch: Parse pause command when tapping pause button instead of toggling pause directly

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

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