// 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 DOCUTILITIES_H #define DOCUTILITIES_H #include "macro.h" #include "singleton.h" #include #include #include #include QT_BEGIN_NAMESPACE typedef QHash QHash_QString_int; typedef QHash QHash_QString_Macro; struct DocUtilities : public Singleton { public: QHash_QString_int cmdHash; QHash_QString_Macro macroHash; }; QT_END_NAMESPACE #endif // DOCUTILITIES_H