Original Post
A cookie for the first C++ programmer who knows what I'm talking about. N'eways, I'm trying to find out what type of derivative an object is. Like this: Base object; if(Base instanceof Derivative1) {do something;} if(Base instanceof Derivative2) {do something different;} I loved this feature in Java, but is there an easy way to do it in C++?