tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Wed, 23 Sep 2015 07:49:46 +0200
changeset 11191 ba192ec1f201
parent 11015 7a905f0070ce
permissions -rw-r--r--
fp complained about this line being too long

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

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

    return a.exec();
}