tools/drawMapTest/main.cpp
author Xeli
Sat, 12 Nov 2011 14:45:36 +0100
branchhedgeroid
changeset 6228 1b7d4d7d162b
parent 4425 2314bb0c433d
permissions -rw-r--r--
added lines to avoid compiler hints, is this really the way we want to do it though? ;/

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

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