tools/drawMapTest/main.cpp
author sheepluva
Tue, 14 Jan 2014 22:56:13 +0100
changeset 9988 317d46a2afd2
parent 4425 2314bb0c433d
permissions -rw-r--r--
simple mechanism to run lua-based test cases. experimental - I will back it out if it turns out to be nonsense

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

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