tools/drawMapTest/main.cpp
author Xeli
Wed, 29 Jun 2011 18:05:04 +0200
branchhedgeroid
changeset 5381 8f95038f3f75
parent 4425 2314bb0c433d
permissions -rw-r--r--
Removed protocol check, using CMake now to setup the building scripts using Templates/* removed old scripts

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

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