tools/hwmap2txt/hwmapconverter/main.cpp
author nemo
Wed, 21 Nov 2018 12:41:55 -0500
changeset 14268 29d614a5c9eb
parent 11015 7a905f0070ce
permissions -rw-r--r--
force-disable video recording if C build is enabled.

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

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

    return a.exec();
}