tools/hwmap2txt/hwmapconverter/main.cpp
author unC0Rr
Sun, 02 Feb 2025 17:47:54 +0100
changeset 16108 65c017453e83
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add anti_match feature, log some info when cannot satisfy rules

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

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

    return a.exec();
}