tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Wed, 21 Sep 2022 06:55:31 +0300
branch1.0.0
changeset 15874 fac577eb8756
parent 11015 7a905f0070ce
permissions -rw-r--r--
fix the other 2 pred/succ conversions

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

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

    return a.exec();
}