tools/hwmap2txt/hwmapconverter/main.cpp
author koda
Sat, 07 Nov 2015 15:07:33 +0100
branch0.9.22
changeset 11602 1a57b0d4cc4e
parent 11015 7a905f0070ce
permissions -rw-r--r--
videorec: Drop setting x264 preset It is the default one anyway.

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

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

    return a.exec();
}