| 1 | // Copyright (C) 2019 The Qt Company Ltd. |
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 |
| 3 | |
| 4 | #ifndef QDOCCOMMANDLINEPARSER_H |
| 5 | #define QDOCCOMMANDLINEPARSER_H |
| 6 | |
| 7 | #include <QtCore/qcommandlineparser.h> |
| 8 | |
| 9 | QT_BEGIN_NAMESPACE |
| 10 | |
| 11 | struct QDocCommandLineParser : public QCommandLineParser |
| 12 | { |
| 13 | QDocCommandLineParser(); |
| 14 | void process(const QStringList &arguments); |
| 15 | |
| 16 | QCommandLineOption defineOption, dependsOption, highlightingOption; |
| 17 | QCommandLineOption showInternalOption, redirectDocumentationToDevNullOption; |
| 18 | QCommandLineOption noExamplesOption, indexDirOption, installDirOption; |
| 19 | QCommandLineOption outputDirOption, outputFormatOption; |
| 20 | QCommandLineOption noLinkErrorsOption, autoLinkErrorsOption, debugOption, atomsDumpOption; |
| 21 | QCommandLineOption prepareOption, generateOption, logProgressOption, singleExecOption; |
| 22 | QCommandLineOption includePathOption, includePathSystemOption, frameworkOption; |
| 23 | QCommandLineOption timestampsOption, useDocBookExtensions; |
| 24 | }; |
| 25 | |
| 26 | QT_END_NAMESPACE |
| 27 | |
| 28 | #endif // QDOCCOMMANDLINEPARSER_H |
| 29 | |