tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Wed, 23 Jun 2021 23:41:51 +0200
changeset 15804 747278149393
parent 11015 7a905f0070ce
permissions -rw-r--r--
Extract network protocol into a separate crate

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

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

    return a.exec();
}