tools/drawMapTest/main.cpp
author nemo
Fri, 07 Jun 2013 22:12:15 -0400
changeset 9157 2f8b60b89121
parent 4425 2314bb0c433d
permissions -rw-r--r--
ok. this could be tidier, but, I'm sick of hogs w/ unmodified thaw thawing on exactly wrong turn.

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

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