tools/drawMapTest/main.cpp
author Mitchell Kember <mk12360@gmail.com>
Sun, 02 Dec 2012 18:12:50 -0500
changeset 8198 7c6e7492333d
parent 4425 2314bb0c433d
permissions -rw-r--r--
Merged with upstream.

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

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