tools/drawMapTest/main.cpp
author unc0rr
Fri, 05 Oct 2018 21:04:01 +0200
changeset 13857 bc90a932a4b3
parent 4425 2314bb0c433d
permissions -rw-r--r--
Fix pas2c not having support for High(LongInt) in init expressions

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

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