tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Sun, 24 Dec 2017 16:56:22 +0100
branchqmlfrontend
changeset 12864 a03f245243b0
parent 11015 7a905f0070ce
permissions -rw-r--r--
And more refactoring...

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

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

    return a.exec();
}