Inheritance and interface in shared DLL
Hi We can define a class as interface and share solution to the team who can develop the implementation of the methods define in the interface class..... Does this behaviour work even if we don't have implementation in my own DLL and my own DLL don't know what would be class name team would be implementing and how many classes... To be precise , let me give some example... Shape is my interface and I would like to call all shape class area methods ... How to implement this behaviour...? I could ask team to export area methods which take pointer of their class and my area method is taking interface pointer as argument... Is this correct ? Still how I would ensure that all class methods whatever team define should be called from my framework... I am sorry but I am not able to connect dots now.... Something simillar I would like to understand..feel free to ask for query.