tools/drawMapTest/main.cpp
author Xeli
Wed, 22 Jun 2011 23:55:32 +0200
branchhedgeroid
changeset 5299 ab899b056f77
parent 4425 2314bb0c433d
permissions -rw-r--r--
Removed the extra WriteToConsole()

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

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