tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Wed, 18 Apr 2018 10:30:27 -0400
changeset 13334 271123ac613d
parent 11015 7a905f0070ce
permissions -rw-r--r--
Added tag 0.9.24.1-release for changeset ea98a45452e5

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

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

    return a.exec();
}