RosettaCodeData/Task/Inheritance-Multiple/Delphi/inheritance-multiple.delphi

13 lines
242 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
type
ICamera = Interface
// ICamera methods...
end;
IMobilePhone = Interface
// IMobilePhone methods...
end;
TCameraPhone = class(TInterfacedObject, ICamera, IMobilePhone)
// ICamera and IMobilePhone methods...
end;