tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Wed, 29 Nov 2017 20:38:26 -0500
changeset 12848 076d00110223
parent 11015 7a905f0070ce
permissions -rw-r--r--
er. should be true I think? also... maybe this should be somewhere else

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

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

    return a.exec();
}