clang API Documentation

Public Member Functions
clang::CXXBaseSpecifier Class Reference

Represents a base class of a C++ class. More...

#include <DeclCXX.h>

List of all members.

Public Member Functions

 CXXBaseSpecifier ()
 CXXBaseSpecifier (SourceRange R, bool V, bool BC, AccessSpecifier A, TypeSourceInfo *TInfo, SourceLocation EllipsisLoc)
SourceRange getSourceRange () const LLVM_READONLY
 Retrieves the source range that contains the entire base specifier.
SourceLocation getLocStart () const LLVM_READONLY
SourceLocation getLocEnd () const LLVM_READONLY
bool isVirtual () const
 Determines whether the base class is a virtual base class (or not).
bool isBaseOfClass () const
 Determine whether this base class is a base of a class declared with the 'class' keyword (vs. one declared with the 'struct' keyword).
bool isPackExpansion () const
 Determine whether this base specifier is a pack expansion.
bool getInheritConstructors () const
 Determine whether this base class's constructors get inherited.
void setInheritConstructors (bool Inherit=true)
 Set that this base class's constructors should be inherited.
SourceLocation getEllipsisLoc () const
 For a pack expansion, determine the location of the ellipsis.
AccessSpecifier getAccessSpecifier () const
 Returns the access specifier for this base specifier.
AccessSpecifier getAccessSpecifierAsWritten () const
 Retrieves the access specifier as written in the source code (which may mean that no access specifier was explicitly written).
QualType getType () const
 Retrieves the type of the base class.
TypeSourceInfogetTypeSourceInfo () const
 Retrieves the type and source location of the base class.

Detailed Description

Represents a base class of a C++ class.

Each CXXBaseSpecifier represents a single, direct base class (or struct) of a C++ class (or struct). It specifies the type of that base class, whether it is a virtual or non-virtual base, and what level of access (public, protected, private) is used for the derivation. For example:

   class A { };
   class B { };
   class C : public virtual A, protected B { };

In this code, C will have two CXXBaseSpecifiers, one for "public virtual A" and the other for "protected B".

Definition at line 157 of file DeclCXX.h.


Constructor & Destructor Documentation

Definition at line 193 of file DeclCXX.h.

clang::CXXBaseSpecifier::CXXBaseSpecifier ( SourceRange  R,
bool  V,
bool  BC,
AccessSpecifier  A,
TypeSourceInfo TInfo,
SourceLocation  EllipsisLoc 
) [inline]

Definition at line 195 of file DeclCXX.h.


Member Function Documentation

Returns the access specifier for this base specifier.

This is the actual base specifier as used for semantic analysis, so the result can never be AS_none. To retrieve the access specifier as written in the source code, use getAccessSpecifierAsWritten().

Definition at line 233 of file DeclCXX.h.

References clang::AS_none, clang::AS_private, and clang::AS_public.

Referenced by clang::Sema::AttachBaseSpecifiers(), CanUseSingleInheritance(), and DiagnoseAccessPath().

Retrieves the access specifier as written in the source code (which may mean that no access specifier was explicitly written).

Use getAccessSpecifier() to retrieve the access specifier for use in semantic analysis.

Definition at line 245 of file DeclCXX.h.

Referenced by clang::ASTWriter::AddCXXBaseSpecifier(), and DiagnoseAccessPath().

For a pack expansion, determine the location of the ellipsis.

Definition at line 224 of file DeclCXX.h.

Referenced by clang::ASTWriter::AddCXXBaseSpecifier().

Determine whether this base class's constructors get inherited.

Definition at line 216 of file DeclCXX.h.

Referenced by clang::ASTWriter::AddCXXBaseSpecifier().

Definition at line 203 of file DeclCXX.h.

References clang::SourceRange::getEnd().

Retrieves the type and source location of the base class.

Definition at line 257 of file DeclCXX.h.

Referenced by clang::ASTWriter::AddCXXBaseSpecifier().

Determine whether this base class is a base of a class declared with the 'class' keyword (vs. one declared with the 'struct' keyword).

Definition at line 210 of file DeclCXX.h.

Referenced by clang::ASTWriter::AddCXXBaseSpecifier().

Determine whether this base specifier is a pack expansion.

Definition at line 213 of file DeclCXX.h.

References clang::SourceLocation::isValid().

Referenced by clang::ASTWriter::AddCXXBaseSpecifier().

Set that this base class's constructors should be inherited.

Definition at line 219 of file DeclCXX.h.

Referenced by clang::Sema::CheckInheritingConstructorUsingDecl(), and clang::ASTReader::ReadCXXBaseSpecifier().


The documentation for this class was generated from the following file: