tools/drawMapTest/main.cpp
author sheepluva
Wed, 02 May 2012 11:28:38 +0200
changeset 6989 4c35e9cf6057
parent 4425 2314bb0c433d
permissions -rw-r--r--
make column sorting three-state: asc -> dsc -> off/default (= by room state)

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

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