tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 07 Apr 2019 23:47:58 +0200
changeset 14767 e2c041b00594
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();
}