Member predicate ClassDerivation::getBaseType
Gets the type from which we are deriving, without resolving any
typedef. For example, the base type in the following code would be T
:
struct B {
};
typedef B T;
struct D : T {
};
Gets the type from which we are deriving, without resolving any
typedef. For example, the base type in the following code would be T
:
struct B {
};
typedef B T;
struct D : T {
};