tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 15 Sep 2019 16:07:49 +0200
changeset 15410 b99834f70847
parent 11015 7a905f0070ce
permissions -rw-r--r--
Update changelog

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

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

    return a.exec();
}