class Widget{ .. } // Widget Class
class Interface { // pure virtual functions .. } // Interface class (Abstract Class)
class WidgetType1 : public Widget, public Interface { ... } // Type 1 Widget (ComboBox) inherits widget and Interface
class WidgetType2 : public Widget, public Interface { ... } // Type 2 Widget (LineEdit) inherits widget and Interface
Widget* widget = getWidget(...);
Interface* interface = dynamic_cast<Interface*> (widget); // Convert Widget to Interface
What I should to do access methods of Interface on object of Widget (which is basically a WidgetType 1/2)
I am unable to type cast object of WidgetType1 referenced by pointer of Widget

dynamic_cast<Interface*>(widget)– herzbube Jan 2 at 11:39