tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Sun, 14 Oct 2018 21:57:30 +0300
changeset 13910 6c8d4e140f27
parent 11015 7a905f0070ce
permissions -rw-r--r--
fix frontend compatibility issues

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

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

    return a.exec();
}