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

#include <QApplication>

#include "mainform.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    MyWindow *mainWin = new MyWindow;
    mainWin->show();
    return app.exec();
}