[fpc-pascal] Inherit interface from 2 interfaces

Juha (gmail) juha.manninen62 at gmail.com
Wed Apr 6 21:10:21 CEST 2011


Zaher Dirkey kirjoitti keskiviikko, 6. huhtikuuta 2011 19:37:04:
> Can i do that?
> type
>   IIntf3 = interface(IIntf11, IIntf2)
> ....
>   end;

No but you can do:
  type
  MyClass = class(IIntf11, IIntf2)
....
  end;


Juha



More information about the fpc-pascal mailing list