tools/drawMapTest/main.cpp
author nemo
Wed, 15 May 2013 23:33:38 -0400
changeset 8999 b5f0fb670b38
parent 4425 2314bb0c433d
permissions -rw-r--r--
better way to do it that avoids screwing up angle bounds on single saucer

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

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