tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Wed, 23 Oct 2019 17:45:28 -0400
changeset 15480 9f98eece9841
parent 11015 7a905f0070ce
permissions -rw-r--r--
forgot this commit.

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

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

    return a.exec();
}