tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Thu, 21 Sep 2017 20:51:14 +0200
changeset 12478 3ed556dad4ec
parent 11015 7a905f0070ce
permissions -rw-r--r--
Change icon for frontend group box in options menu

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

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

    return a.exec();
}