namespace A {
namespace B {
class C {
class D {
};
};
}
}
CXXRecords
for D
with getNameAsString
would return D
.
How can I get the fullname ::A::B::C::D
?
I tried to recursively call getParent
but I couldn't get the namespaces..