tools/drawMapTest/main.cpp
author Vatten
Tue, 30 Oct 2012 18:01:11 -0400
branch0.9.18
changeset 7895 ac1610a7b7fa
parent 4425 2314bb0c433d
permissions -rw-r--r--
apparently an older version was provided earlier and this one is newer and theoretically desync free. untested.

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

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