tools/drawMapTest/main.cpp
author koda
Wed, 01 Dec 2010 00:58:03 +0100
changeset 4437 05192cdbce9b
parent 4425 2314bb0c433d
permissions -rw-r--r--
un-break build (wrong merge in uConsole) and update project file with the new sources

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

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