tools/drawMapTest/main.cpp
author sheepluva
Sun, 07 Jan 2018 18:19:00 +0100
changeset 12885 dab60d247b75
parent 4425 2314bb0c433d
permissions -rw-r--r--
also put GL2 fixes into default

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

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