tools/drawMapTest/main.cpp
author unc0rr
Tue, 21 Jul 2015 23:51:58 +0300
changeset 11026 b8022f4bea14
parent 4425 2314bb0c433d
permissions -rw-r--r--
Put diagnostic message into log when quitting due to end of input in demo replay mode

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

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