tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Wed, 27 Jun 2018 17:58:33 +0300
changeset 13431 f091f69d59e4
parent 11015 7a905f0070ce
permissions -rw-r--r--
Additional round cleanup

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

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

    return a.exec();
}