tools/drawMapTest/main.cpp
author sheepluva
Thu, 11 Dec 2014 13:35:35 +0100
changeset 10657 f2507005be87
parent 4425 2314bb0c433d
permissions -rw-r--r--
let sinegun bounce on weBounce

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

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