tools/drawMapTest/main.cpp
author Medo <smaxein@googlemail.com>
Mon, 25 Jun 2012 00:42:07 +0200
changeset 7271 5608ac657362
parent 4425 2314bb0c433d
permissions -rw-r--r--
frontlib: Intermittent commit. Things are still in flux but we're getting there :)

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

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