tools/drawMapTest/main.cpp
author koda
Sun, 15 May 2016 10:43:18 +0200
changeset 11807 93621207563b
parent 4425 2314bb0c433d
permissions -rw-r--r--
avrec crash/math fix (sheepy here, committing koda's fix because I'm tired of having it lying around in my repo :P

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

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