tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sun, 02 Oct 2016 12:42:16 +0200
changeset 11862 fbe9bb9602eb
parent 11015 7a905f0070ce
permissions -rw-r--r--
also update ghc info in INSTALL file

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

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

    return a.exec();
}