summaryrefslogtreecommitdiff
path: root/src/qdoc/qdoc/puredocparser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/qdoc/puredocparser.h')
-rw-r--r--src/qdoc/qdoc/puredocparser.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/qdoc/qdoc/puredocparser.h b/src/qdoc/qdoc/puredocparser.h
new file mode 100644
index 000000000..febfca56a
--- /dev/null
+++ b/src/qdoc/qdoc/puredocparser.h
@@ -0,0 +1,33 @@
+// Copyright (C) 2021 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+
+#ifndef PUREDOCPARSER_H
+#define PUREDOCPARSER_H
+
+#include "cppcodeparser.h"
+
+#include <QtCore/QFile>
+
+QT_BEGIN_NAMESPACE
+
+class Location;
+
+class PureDocParser : public CodeParser
+{
+public:
+ PureDocParser() = default;
+ ~PureDocParser() override = default;
+
+ void initializeParser() override {}
+ QString language() override { return ""; }
+
+ QStringList sourceFileNameFilter() override;
+ void parseSourceFile(const Location &location, const QString &filePath, CppCodeParser& cpp_code_parser) override;
+
+private:
+ void processQdocComments(QFile& input_file, CppCodeParser& cpp_code_parser);
+};
+
+QT_END_NAMESPACE
+
+#endif