tools/drawMapTest/main.cpp
author sheepluva
Thu, 06 Dec 2012 11:14:21 +0100
branchflibqtfrontend
changeset 8263 a0d586321d6f
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix some comments and add basic doxygen file

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

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