tools/drawMapTest/main.cpp
author Zorg <zorgiepoo@gmail.com>
Sat, 02 Apr 2011 12:52:19 -0400
changeset 5082 2d2422772832
parent 4425 2314bb0c433d
permissions -rw-r--r--
Forgot to add this too..

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

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