RosettaCodeData/Task/Inheritance-Multiple/Delphi/inheritance-multiple.delphi
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

12 lines
242 B
Text

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