tools/drawMapTest/main.cpp
author koda
Wed, 23 Oct 2013 04:35:23 +0200
changeset 9569 dd1861ca4def
parent 4425 2314bb0c433d
permissions -rw-r--r--
add /history command from chat

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

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