tools/drawMapTest/main.cpp
author koda
Sun, 05 Feb 2012 15:52:26 +0100
changeset 6624 e049b5bb0ad1
parent 4425 2314bb0c433d
permissions -rw-r--r--
BUUUUURN OBJC AMMOMENU BUUUURNhg diff! (on a separate note, this reduces the codesize by ~37k)

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

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