tools/drawMapTest/main.cpp
author nemo
Tue, 24 Dec 2013 15:21:28 -0500
changeset 9840 ff0d7954aabc
parent 4425 2314bb0c433d
permissions -rw-r--r--
0.9.20 changes. May have missed stuff. Please add if you notice anything missing.

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

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