1// Copyright (C) 2020 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
3#ifndef DOCUTILITIES_H
4#define DOCUTILITIES_H
5
6#include "macro.h"
7#include "singleton.h"
8
9#include <QtCore/qglobal.h>
10#include <QtCore/qhash.h>
11#include <QtCore/qstring.h>
12#include <QtCore/qmap.h>
13
14QT_BEGIN_NAMESPACE
15
16typedef QHash<QString, int> QHash_QString_int;
17typedef QHash<QString, Macro> QHash_QString_Macro;
18
19struct DocUtilities : public Singleton<DocUtilities>
20{
21public:
22 QHash_QString_int cmdHash;
23 QHash_QString_Macro macroHash;
24};
25
26QT_END_NAMESPACE
27
28#endif // DOCUTILITIES_H
29

source code of qttools/src/qdoc/qdoc/docutilities.h