tools/drawMapTest/main.cpp
author koda
Tue, 17 Jan 2012 23:36:15 +0100
changeset 6582 d32b5fde9ea6
parent 4425 2314bb0c433d
permissions -rw-r--r--
move the feedback button in a nicer position

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

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