Browse Source

*** empty log message ***

florian 23 năm trước cách đây
mục cha
commit
6517a7c0d0
1 tập tin đã thay đổi với 12 bổ sung0 xóa
  1. 12 0
      tests/webtbs/tw2041.pp

+ 12 - 0
tests/webtbs/tw2041.pp

@@ -0,0 +1,12 @@
+{ %version=1.1}
+{$mode objfpc}
+
+type
+  ITest = interface                                                                                       
+    procedure Put(Key: Integer; Item: IUnknown);                                                                        
+    function Get(Key: Integer): IUnknown;                                                                              
+    property Item[Key: Integer]: IUnknown read Get write Put; default;                                                 
+  end;
+
+begin
+end.