tools/drawMapTest/main.cpp
author sheepluva
Thu, 11 Dec 2014 15:20:23 +0100
changeset 10659 79e466c393f7
parent 4425 2314bb0c433d
permissions -rw-r--r--
pas2c doesn't like semi-colons after repeat

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

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