tw2041.pp 238 B

123456789101112
  1. { %version=1.1}
  2. {$mode objfpc}
  3. type
  4. ITest = interface
  5. procedure Put(Key: Integer; Item: IUnknown);
  6. function Get(Key: Integer): IUnknown;
  7. property Item[Key: Integer]: IUnknown read Get write Put; default;
  8. end;
  9. begin
  10. end.