tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <almikes@aol.com>
Fri, 06 May 2016 16:08:48 +0200
changeset 11817 92b3b0fcb41f
parent 11015 7a905f0070ce
permissions -rw-r--r--
Add more What's This? texts throughout the frontend

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

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

    return a.exec();
}