In my project I have a scenario like suppose:
- 1) BaseClass is an interface which derives from a parent class IFlow
- 2) ChildClass derives from it ie from Base class
3) In childClass Init function I am using
dynamic_castto cast the objet of IFlow to BaseClass which is as shown below:void ChildClass::init() { IFlow* pFlow = someMethod(); //it returns the IFlow object pointer //this works for static cast but fails for dynamic cast BaseClass *base = dynamic_cast<BaseClass*>(pFlow) ; }
In the above code the 2nd line of dynamic _cast returns zero but if the dynamic_cast is changed to static_cast then the code works as expected .
Please advice