tools/drawMapTest/main.cpp
author koda
Mon, 04 Mar 2013 13:44:33 +0100
changeset 8642 d7062e684466
parent 4425 2314bb0c433d
permissions -rw-r--r--
use rev info from the just created file when configuring without mercurial

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

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