tools/drawMapTest/main.cpp
author nemo
Fri, 01 Mar 2013 16:12:25 -0500
changeset 8621 f9677715a582
parent 4425 2314bb0c433d
permissions -rw-r--r--
my turn to do a neglected merge for someone else

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

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