tools/drawMapTest/main.cpp
author Marco Bresciani
Fri, 12 Jul 2013 11:17:32 +0200
changeset 9352 cb893603f068
parent 4425 2314bb0c433d
permissions -rw-r--r--
Sorry, wife asked me to remove her name...

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

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