tools/drawMapTest/main.cpp
author nemo
Tue, 26 Feb 2013 20:26:49 -0500
branchicegun
changeset 8588 47084c6fcb4e
parent 4425 2314bb0c433d
permissions -rw-r--r--
huh. how'd we end up needing a merge here...

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

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