tools/drawMapTest/main.cpp
author koda
Sun, 27 Mar 2011 01:53:59 +0100
changeset 5053 a767954cfa03
parent 4425 2314bb0c433d
permissions -rw-r--r--
this should help people hacking the cmake files (removes old comments, BUNDLE and other macros, updates to INSTALL file)

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

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