tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Mon, 10 Sep 2018 23:31:44 +0300
changeset 13807 24fe56d3c6a2
parent 11015 7a905f0070ce
permissions -rw-r--r--
improve error handling for TLS handshake

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

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

    return a.exec();
}