tools/drawMapTest/main.cpp
author sheepluva
Fri, 31 Aug 2012 15:28:03 +0200
changeset 7637 60b213e5ded3
parent 4425 2314bb0c433d
permissions -rw-r--r--
use old approach for printing gl extentions for pas2c (less complex/no StrUtils dependencies)

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

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