tools/drawMapTest/main.cpp
author antonc27 <antonc27@mail.ru>
Thu, 15 Oct 2015 20:36:08 +0200
branchios-revival
changeset 11208 89f6c8cf60c8
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Timer button added to mobile touch controls

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

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