tools/drawMapTest/main.cpp
author Marcin Mielniczuk <marmistrz.dev@zoho.eu>
Tue, 03 Jul 2018 22:37:15 +0300
changeset 13435 2e5a5eee8d80
parent 4425 2314bb0c433d
permissions -rw-r--r--
Update rand and log to the latest versions

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

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