tools/drawMapTest/main.cpp
author sheepluva
Sat, 19 Sep 2015 22:17:50 +0200
changeset 11185 fad9e4903e7b
parent 4425 2314bb0c433d
permissions -rw-r--r--
tweak tips a little (loosely based on Wuzzy's suggestions)

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

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