tools/drawMapTest/main.cpp
author nemo
Mon, 29 Oct 2012 16:26:26 -0400
changeset 7882 35dfc54ba2c6
parent 4425 2314bb0c433d
permissions -rw-r--r--
disable this block since it doesn't fit star's new graphic. doesn't show up often anyway, since unc0rr changed gst clearing

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

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