summaryrefslogtreecommitdiffstats
path: root/src/qdoc/qdoc/src/qdoc/topic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qdoc/qdoc/src/qdoc/topic.h')
-rw-r--r--src/qdoc/qdoc/src/qdoc/topic.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/qdoc/qdoc/src/qdoc/topic.h b/src/qdoc/qdoc/src/qdoc/topic.h
new file mode 100644
index 000000000..1f9646864
--- /dev/null
+++ b/src/qdoc/qdoc/src/qdoc/topic.h
@@ -0,0 +1,29 @@
+// Copyright (C) 2020 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
+#ifndef TOPIC_H
+#define TOPIC_H
+
+QT_BEGIN_NAMESPACE
+
+struct Topic
+{
+public:
+ Topic() = default;
+ Topic(QString &t, QString a) : m_topic(t), m_args(std::move(a)) { }
+ ~Topic() = default;
+
+ [[nodiscard]] bool isEmpty() const { return m_topic.isEmpty(); }
+ void clear()
+ {
+ m_topic.clear();
+ m_args.clear();
+ }
+
+ QString m_topic {};
+ QString m_args {};
+};
+typedef QList<Topic> TopicList;
+
+QT_END_NAMESPACE
+
+#endif // TOPIC_H