tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Fri, 22 Dec 2017 23:59:03 +0100
branchqmlfrontend
changeset 12857 90f927b4b9e1
parent 11015 7a905f0070ce
permissions -rw-r--r--
Start hacking new frontend

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

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

    return a.exec();
}