tools/hwmap2txt/hwmapconverter/main.cpp
author sheepluva
Sat, 19 Sep 2015 22:17:50 +0200
changeset 11185 fad9e4903e7b
parent 11015 7a905f0070ce
permissions -rw-r--r--
tweak tips a little (loosely based on Wuzzy's suggestions)

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

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

    return a.exec();
}