#include <Xrtti.h>
Inheritance diagram for Xrtti::Context:
Public Types | |
enum | Type { Type_Class = 0, Type_Incomplete = 1, Type_Namespace = 2, Type_Struct = 3, Type_Union = 4 } |
Public Member Functions | |
virtual Type | GetType () const =0 |
const char * | GetName () const |
const char * | GetFullName () const |
const Context * | GetParent () const |
Friends | |
class | Incomplete |
class | Namespace |
class | Structure |
|
********************************************************************** This enumerates the valid Context types |
|
Returns the type of this context. The most derived class of this object is determined by the value returned here:
Type_Class: most derived type is Class
Implemented in Xrtti::Incomplete, Xrtti::Namespace, Xrtti::Union, Xrtti::Struct, and Xrtti::Class. |
|
Returns the name of this context.
|
|
Returns the full name of this context. This includes the entire namespace leading up to this context. It is the name of the parent Context prepended to the name of this Context, with a double-colon separator.
|
|
This is the parent context of this context. If this is NULL, then this Context is the root Context and has no parent. |