aboutsummaryrefslogtreecommitdiffstats
path: root/sources/shiboken6/ApiExtractor/documentation_enums.h
blob: 641e71701b98794975ad5659caa91255028a5d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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/QtTypes>

enum class DocumentationFormat : uint8_t
{
    Native, // XML
    Target  // RST
};

enum class DocumentationType : uint8_t
{
    Detailed,
    Brief
};

#endif // DOCUMENTATION_ENUMS_H