tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Tue, 11 Sep 2018 18:34:27 +0200
changeset 13771 f26c9e931f5a
parent 11015 7a905f0070ce
permissions -rw-r--r--
Allow to change volume during pause

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

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

    return a.exec();
}