tools/drawMapTest/main.cpp
author koda
Tue, 24 Apr 2012 06:53:39 +0200
changeset 6920 b1d0d26d41fa
parent 4425 2314bb0c433d
permissions -rw-r--r--
this should enable png screenshots on osx as well

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

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