tools/drawMapTest/main.cpp
author nemo
Mon, 22 Dec 2014 17:47:22 -0500
changeset 10695 e295995348f9
parent 4425 2314bb0c433d
permissions -rw-r--r--
this bugs me every time I look at it

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

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