tools/drawMapTest/main.cpp
author nemo
Sat, 01 Mar 2014 13:59:12 -0500
changeset 10167 7f2685fff3e2
parent 4425 2314bb0c433d
permissions -rw-r--r--
no idea what happened to this image... it seems like I'm reverting to most recent revision O_o

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

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