tools/drawMapTest/main.cpp
author nemo
Mon, 29 Oct 2012 20:37:57 -0400
changeset 7894 1e8e9400e9de
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix hat names. more efficient killing off of limited hogs (takes too long to wait otherwise)

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

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