tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur <mail@none>
Thu, 26 Dec 2019 21:04:37 +0300
changeset 15552 a859f08ebb4f
parent 11015 7a905f0070ce
permissions -rw-r--r--
update tls configuration

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

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

    return a.exec();
}