Can anybody explain me the meaning of this expression ??
- by de costo
void* GetData()
{
return reinterpret_cast<unsigned char*>(this);
}
Is there a case of automatic type coercion happening in this case ??? How could I convert the object of my class to an unsigned char* ??