Tagged Questions
0
votes
6answers
313 views
C++ syntax question
What does the following syntax mean?
typedef void* hMyClass; //typedef as a handle or reference
hMyClass f = &something;
const MyClass& foo = static_cast<MyClass&>(*f);
foo.bar();