tools/drawMapTest/main.cpp
author Xeli
Sat, 18 Feb 2012 16:56:04 +0100
changeset 6714 f2f93017132c
parent 4425 2314bb0c433d
permissions -rw-r--r--
moved the firebutton, added the AMWidget button and removed the forwardjump widget(it's longpress on backjump now)

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

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