tools/drawMapTest/main.cpp
author sheepluva
Wed, 02 May 2012 10:47:21 +0200
changeset 6987 e34415c77342
parent 4425 2314bb0c433d
permissions -rw-r--r--
allow custom sorting of roomslist (by clicking on header sections)

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

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