1// Copyright (C) 2016 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
3
4#include <QtScxml/qscxmltabledata.h>
5#include "qscxmlc.h"
6
7#include <QCoreApplication>
8#include <QStringList>
9
10int main(int argc, char *argv[])
11{
12 QCoreApplication a(argc, argv);
13 a.setApplicationVersion(QString::fromLatin1(ba: "%1 (Qt %2)").arg(
14 args: QString::number(Q_QSCXMLC_OUTPUT_REVISION),
15 args: QString::fromLatin1(QT_VERSION_STR)));
16 return run(arguments: QCoreApplication::arguments());
17}
18

source code of qtscxml/tools/qscxmlc/main.cpp