Hi.
14 Words : Er will doch, dass er seine Klasse TMeineMethoden unabhängig von diese, speziellen Fall hat.
C++-Beispiel:
Code:
class MyMethods {
private:
protected:
public:
MyMethods() {};
~MyMethods() {};
MachDies() { /* tätäää */ }
MachDas() { /* tataaa */ }
};
class MeinSocket : public MyMethods, public TServerSocket {
/* ... */
};
/* aber auch : */
class MeineTextverarbeitung : public MyMethods, public TTextInput {
/* ... */
};
Da Pascal/ObjectPascal/Delphi aber keine Mehrfachvererbung hat geht das nicht!