-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathcpp_entity_type.h
More file actions
52 lines (44 loc) · 814 Bytes
/
Copy pathcpp_entity_type.h
File metadata and controls
52 lines (44 loc) · 814 Bytes
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Copyright (C) 2022 Satya Das and CppParser contributors
// SPDX-License-Identifier: MIT
#ifndef C9EFCA65_C9EF_406A_8025_AFF92923890D
#define C9EFCA65_C9EF_406A_8025_AFF92923890D
namespace cppast {
enum class CppEntityType
{
DOCUMENTATION_COMMENT,
PREPROCESSOR,
ENTITY_ACCESS_SPECIFIER,
COMPOUND,
VAR,
VAR_LIST,
TYPEDEF_DECL,
TYPEDEF_DECL_LIST,
NAMESPACE_ALIAS,
USING_NAMESPACE,
USING_DECL,
ENUM,
FORWARD_CLASS_DECL,
FUNCTION,
LAMBDA,
CONSTRUCTOR,
DESTRUCTOR,
TYPE_CONVERTER,
FUNCTION_PTR,
EXPRESSION,
GOTO_STATEMENT,
RETURN_STATEMENT,
THROW_STATEMENT,
MACRO_CALL,
ASM_BLOCK,
LABEL,
IF_BLOCK,
FOR_BLOCK,
RANGE_FOR_BLOCK,
WHILE_BLOCK,
DO_WHILE_BLOCK,
SWITCH_BLOCK,
TRY_BLOCK,
BLOB,
};
}
#endif /* C9EFCA65_C9EF_406A_8025_AFF92923890D */