tools/hwmap2txt/hwmapconverter/main.cpp
author alfadur
Sat, 27 Oct 2018 08:12:22 +0300
changeset 14009 d203bb36225f
parent 11015 7a905f0070ce
permissions -rw-r--r--
and finally make the bat hit moving gears for completeness

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

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

    return a.exec();
}