tools/drawMapTest/main.cpp
author nemo
Fri, 02 Sep 2011 09:25:43 -0400
changeset 5738 a81fc23356e7
parent 4425 2314bb0c433d
permissions -rw-r--r--
that was just getting me into trouble

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

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