blob: bb946db138db690873062b6f8b176eb41785c772 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#ifndef DOXYGENPARSER_H
#define DOXYGENPARSER_H
#include "docparser.h"
class DoxygenParser : public DocParser
{
public:
DoxygenParser() = default;
QString fillDocumentation(const AbstractMetaClassPtr &metaClass) override;
Documentation retrieveModuleDocumentation(const QString& name) override;
};
#endif // DOXYGENPARSER_H
|