tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Tue, 09 Oct 2018 12:54:40 -0400
changeset 13879 6b2c87490f0a
parent 11015 7a905f0070ce
permissions -rw-r--r--
drop the error checked StrToInt as non-critical - pas2c did not implement it.

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

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

    return a.exec();
}