tools/hwmap2txt/hwmapconverter/main.cpp
author Wuzzy <Wuzzy2@mail.ru>
Sun, 06 Jan 2019 02:32:27 +0100
changeset 14527 0fc9560be9cc
parent 11015 7a905f0070ce
permissions -rw-r--r--
Pagetraining: Make sure the translator comment will be collected

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

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

    return a.exec();
}