tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Wed, 07 Nov 2018 15:18:09 -0500
changeset 14165 8d9e3af8abce
parent 11015 7a905f0070ce
permissions -rw-r--r--
ignore whitespace/case by default to reduce false positives

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

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

    return a.exec();
}