tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Mon, 12 Aug 2019 21:20:00 +0300
changeset 15309 9583c3371371
parent 11015 7a905f0070ce
permissions -rw-r--r--
make sure keys.csv is installed

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

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

    return a.exec();
}