tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Mon, 19 Nov 2018 21:10:54 +0300
changeset 14248 540efb210083
parent 11015 7a905f0070ce
permissions -rw-r--r--
as much as howling hedgehogs is hilarious, it might be confusing at first

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

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

    return a.exec();
}