tools/drawMapTest/main.cpp
author sheepluva
Fri, 16 Sep 2016 00:41:03 +0200
changeset 11854 bc5714636364
parent 4425 2314bb0c433d
permissions -rw-r--r--
fix typo and hopefully also pas2c

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

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