tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Sun, 24 Mar 2024 14:19:02 -0400
branch1.0.0
changeset 16023 fcc98c953b5e
parent 11015 7a905f0070ce
permissions -rw-r--r--
suppress this message too.

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

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

    return a.exec();
}