tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Sat, 28 Jul 2018 12:58:12 -0400
changeset 13568 470982c05f7e
parent 11015 7a905f0070ce
permissions -rw-r--r--
merge of 0.9.24 - hopefully correctly this time

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

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

    return a.exec();
}