tools/drawMapTest/main.cpp
author Mitchell Kember <mk12360@gmail.com>
Sun, 02 Dec 2012 13:57:21 -0500
changeset 8190 92792d48574b
parent 4425 2314bb0c433d
permissions -rw-r--r--
Merged changes from upstream.

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

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