tools/drawMapTest/main.cpp
author koda
Mon, 26 Sep 2016 23:36:00 -0400
changeset 11851 5edd66c2d422
parent 4425 2314bb0c433d
permissions -rw-r--r--
Drop xfire module The service shut down, this is now dead code with potential GPL license incompatibility.

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

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