tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Sat, 11 Jul 2020 02:12:02 +0300
changeset 15715 e0cdb6ae88ab
parent 11015 7a905f0070ce
permissions -rw-r--r--
add sentry deployment step

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

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

    return a.exec();
}