tools/drawMapTest/main.cpp
author nemo
Sat, 17 Nov 2012 09:03:47 -0500
changeset 8051 f26422ef0333
parent 4425 2314bb0c433d
permissions -rw-r--r--
oft-requested, should make the shoppa guys happy, probably, but, knowing them, I'm sure someone will complain

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

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