tools/drawMapTest/main.cpp
author nemo
Sun, 24 Feb 2013 14:14:09 -0500
changeset 8573 4e663f53bd09
parent 4425 2314bb0c433d
permissions -rw-r--r--
*sigh* somehow misplaced this. this should have been rd9627d65edf7

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

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