tools/drawMapTest/main.cpp
author unc0rr
Tue, 24 Nov 2015 09:00:43 +0300
branchqmlfrontend
changeset 11427 1895a9504a35
parent 4425 2314bb0c433d
permissions -rw-r--r--
- Add the rest of protocol commands - Fix some generator glitches

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

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