tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sat, 01 Oct 2016 19:06:12 +0200
changeset 11853 837f9f1b84a5
parent 11015 7a905f0070ce
permissions -rw-r--r--
fix issue #110

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

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

    return a.exec();
}