tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Sat, 27 Jun 2020 02:22:31 +0300
changeset 15641 8e93ce81e850
parent 11015 7a905f0070ce
permissions -rw-r--r--
add current 🦔 targeting to sentry

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

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

    return a.exec();
}