tools/drawMapTest/main.cpp
author Wuzzy
Thu, 03 Sep 2015 09:00:26 -0400
changeset 11069 1997662b68d8
parent 4425 2314bb0c433d
permissions -rw-r--r--
tip changes, mostly new strategy suggestions

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

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