tools/hwmap2txt/hwmapconverter/main.cpp
author koda
Fri, 25 Mar 2016 10:54:23 -0400
changeset 11618 bc83e11e5ee7
parent 11015 7a905f0070ce
permissions -rw-r--r--
More compatibility wrappers for video

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

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

    return a.exec();
}