RosettaCodeData/Task/Inheritance-Multiple/Delphi/inheritance-multiple.pas
2024-10-16 18:07:41 -07:00

12 lines
242 B
ObjectPascal

type
ICamera = Interface
// ICamera methods...
end;
IMobilePhone = Interface
// IMobilePhone methods...
end;
TCameraPhone = class(TInterfacedObject, ICamera, IMobilePhone)
// ICamera and IMobilePhone methods...
end;