tools/drawMapTest/main.cpp
author sheepluva
Sat, 16 Jan 2016 19:20:06 +0100
changeset 11515 4dd77731453b
parent 4425 2314bb0c433d
permissions -rw-r--r--
update some old google code links in the code/etc. thanks Wuzzy for the heads-up

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

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