If I have a struct that implements an interface, what is the process of converting back and forth between the two types? Simple casting does not work. I am trying to convert between arrays of the ...
The C++ spec doesn't even require the implementation to use a vtable AFAIK. With that behind, how hard is it to dump the binary representation of a class and figure out where the pointer is? A simple ...