tools/drawMapTest/main.cpp
author koda
Sat, 04 Jan 2014 02:18:57 +0100
branch0.9.20
changeset 9905 ec0d9f737449
parent 4425 2314bb0c433d
permissions -rw-r--r--
have revinfo also try to pick up git hashes

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

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