tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Mon, 15 Oct 2018 13:08:29 -0400
changeset 13941 7173b702e8db
parent 11015 7a905f0070ce
permissions -rw-r--r--
tag both as overloadable - seems to satisfy clang 3.4

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

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

    return a.exec();
}