tools/drawMapTest/main.cpp
author koda
Wed, 15 Feb 2012 18:22:39 +0100
changeset 6685 ef706fccfb0a
parent 4425 2314bb0c433d
permissions -rw-r--r--
moved other widgets under the USE_TOUCH_INTERFACE, added pause button (at least, graphically...)

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

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