tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Thu, 19 Jul 2018 19:35:28 +0200
changeset 13513 d8462cc9d42d
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix engine crash when trying to delete cameraFile but it doesn't exist

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

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

    return a.exec();
}