blob: 35a0acfdbe1d64073aec7a2e5b6102ff6b61123c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#ifndef DOCUMENTATION_ENUMS_H
#define DOCUMENTATION_ENUMS_H
#include <QtCore/qtypes.h>
enum class DocumentationTarget : uint8_t
{
Documentation, // Documentation
DocString // Python doc string (binding code)
};
enum class DocumentationFormat : uint8_t
{
Native, // XML
Target // RST
};
enum class DocumentationEmphasis : uint8_t
{
None,
LanguageNote
};
enum class DocumentationType : uint8_t
{
Detailed,
Brief
};
#endif // DOCUMENTATION_ENUMS_H
|