tools/drawMapTest/main.cpp
author sheepluva
Thu, 04 Dec 2014 20:15:03 +0100
changeset 10625 125e120165aa
parent 4425 2314bb0c433d
permissions -rw-r--r--
flake FrameTicks value of 0 now indicades that the frame should not be changed

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

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