tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sat, 01 Oct 2016 16:45:59 +0200
changeset 11852 d7227dc3b397
parent 11015 7a905f0070ce
permissions -rw-r--r--
fix build

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

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

    return a.exec();
}