tools/drawMapTest/main.cpp
author nemo
Fri, 20 Jul 2012 21:15:38 -0400
changeset 7412 9e5aa3c8dc62
parent 4425 2314bb0c433d
permissions -rw-r--r--
Ok. *these* should be safe with just this one extra check...

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

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