tools/drawMapTest/main.cpp
author nemo
Thu, 23 May 2013 09:33:36 -0400
changeset 9047 8edc79df026d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Remove repetition. This map doesn't need to be so wide.

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

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