tools/drawMapTest/main.cpp
author nemo
Sun, 14 Aug 2011 13:25:55 -0400
changeset 5560 d1ebcf4df330
parent 4425 2314bb0c433d
permissions -rw-r--r--
Change to "aura" due to odd crasher in DrawCircle, at least on my machine/driver. Less precise, but perhaps more attractive.

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

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