tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Mon, 26 Nov 2018 21:13:49 +0100
changeset 14309 055eae933482
parent 11015 7a905f0070ce
permissions -rw-r--r--
Touch: Parse pause command when tapping pause button instead of toggling pause directly

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

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

    return a.exec();
}