tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Wed, 02 Sep 2015 11:55:37 -0400
changeset 11067 c632b47b8ff0
parent 11015 7a905f0070ce
permissions -rw-r--r--
Trying to get these scripts to behave properly, still WIP though.

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

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

    return a.exec();
}