tools/hwmap2txt/hwmapconverter/main.cpp
author unc0rr
Fri, 05 Oct 2018 21:58:12 +0200
changeset 13884 4f123ac4f002
parent 11015 7a905f0070ce
permissions -rw-r--r--
Fix pas2c build dependencies

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

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

    return a.exec();
}