tools/drawMapTest/main.cpp
author koda
Mon, 26 Sep 2011 00:03:14 +0200
branchhedgeroid
changeset 6025 cac1d5601d7c
parent 4425 2314bb0c433d
permissions -rw-r--r--
reviewed the build system and parts of the previous merge, performed some code cleanup

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

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