enum DeclInfo::DeclKind
Description
A simplified description of \c CommentDecl kind that should be good enough for documentation rendering purposes.
Declared at: clang/include/clang/AST/Comment.h:993
Enumerators
Name | Value | Comment |
---|---|---|
OtherKind | 0 | Everything else not explicitly mentioned below. |
FunctionKind | 1 | Something that we consider a "function": |
ClassKind | 2 | Something that we consider a "class": |
VariableKind | 3 | Something that we consider a "variable": |
NamespaceKind | 4 | A C++ namespace. |
TypedefKind | 5 | A C++ typedef-name (a 'typedef' decl specifier or alias-declaration), see \c TypedefNameDecl. |
EnumKind | 6 | An enumeration or scoped enumeration. |