tools/drawMapTest/main.cpp
author sheepluva
Sat, 22 Oct 2011 00:00:48 +0200
changeset 6175 a80833ddaef0
parent 4425 2314bb0c433d
permissions -rw-r--r--
moving a file around, fixing a png, etc.

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

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