clang 18.0.0git
|
This holds information associated with enums. More...
#include "clang/ExtractAPI/API.h"
Public Member Functions | |
EnumRecord (StringRef USR, StringRef Name, PresumedLoc Loc, AvailabilitySet Availabilities, const DocComment &Comment, DeclarationFragments Declaration, DeclarationFragments SubHeading, bool IsFromSystemHeader) | |
![]() | |
RecordKind | getKind () const |
APIRecord ()=delete | |
APIRecord (RecordKind Kind, StringRef USR, StringRef Name, PresumedLoc Location, AvailabilitySet Availabilities, LinkageInfo Linkage, const DocComment &Comment, DeclarationFragments Declaration, DeclarationFragments SubHeading, bool IsFromSystemHeader) | |
APIRecord (RecordKind Kind, StringRef USR, StringRef Name) | |
virtual | ~APIRecord ()=0 |
Static Public Member Functions | |
static bool | classof (const APIRecord *Record) |
Public Attributes | |
SmallVector< std::unique_ptr< EnumConstantRecord > > | Constants |
![]() | |
StringRef | USR |
StringRef | Name |
PresumedLoc | Location |
AvailabilitySet | Availabilities |
LinkageInfo | Linkage |
DocComment | Comment |
Documentation comment lines attached to this symbol declaration. | |
DeclarationFragments | Declaration |
Declaration fragments of this symbol declaration. | |
DeclarationFragments | SubHeading |
SubHeading provides a more detailed representation than the plain declaration name. | |
HierarchyInformation | ParentInformation |
Information about the parent record of this record. | |
bool | IsFromSystemHeader |
Whether the symbol was defined in a system header. | |
|
inline |
Definition at line 472 of file API.h.
References clang::extractapi::APIRecord::RK_Enum.
SmallVector<std::unique_ptr<EnumConstantRecord> > clang::extractapi::EnumRecord::Constants |