tools/drawMapTest/main.cpp
author nemo
Mon, 16 Jul 2012 23:08:42 -0400
changeset 7396 7c0e07c23aad
parent 4425 2314bb0c433d
permissions -rw-r--r--
what the heck, let's add a few more

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

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