tools/drawMapTest/main.cpp
author nemo
Mon, 17 Oct 2011 14:05:34 -0400
changeset 6142 ee0bcee5bf86
parent 4425 2314bb0c433d
permissions -rw-r--r--
never doing any graphics stuff when I can't test, again :(

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

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