The __super keyword is specific to Microsoft. It is used to access the virtual methods of the parent class. Do you know alternative keywords for borland C ++ / delphi compilers?
class MyBaseClass { virtual void DoSomething(); }; class MyDerivedClass : public MyBaseClass { virtual void DoSomething(); }; void MyBaseClass::DoSomething() {
source share