Is there a way to identify where the virtual pointers reside (by generating a mask or so) in the memory layout? (ex: Below code)
class D{//virtual functions}
class B{//virtual functions}
class A : public B, public D
{//virtual functions}
Is there a way to identify where the virtual pointers reside (by generating a mask or so) in the memory layout? (ex: Below code)
class D{//virtual functions}
class B{//virtual functions}
class A : public B, public D
{//virtual functions}