tools/hwmap2txt/hwmapconverter/main.cpp
author antonc27 <antonc27@mail.ru>
Tue, 20 Oct 2015 23:56:31 +0200
branchios-revival
changeset 11219 c51ecb9bcf05
parent 11015 7a905f0070ce
permissions -rw-r--r--
- Retrieving language ID moved to HWUtils

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

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

    return a.exec();
}