tools/drawMapTest/main.cpp
author koda
Mon, 10 Jun 2013 10:59:49 +0200
changeset 9167 ecf19179b37e
parent 4425 2314bb0c433d
permissions -rw-r--r--
protect all types with -fstack-protector-all

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

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