tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Wed, 30 Jun 2021 00:18:53 +0200
changeset 15810 ee84e417d8d0
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add parser and idempotention tests for server messages

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

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

    return a.exec();
}