tools/drawMapTest/main.cpp
author sheepluva
Tue, 18 Oct 2011 05:43:16 +0200
branch0.9.16
changeset 6005 3470f3f547ca
parent 4425 2314bb0c433d
permissions -rw-r--r--
backport of c90f50e6dd8e (eggshell vgt related segfault)

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

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