source: DelphiTemplates/Specialized/ListObject.pas

Last change on this file was 2, checked in by chronos, 14 years ago
File size: 422 bytes
Line 
1unit ListObject;
2
3interface
4
5uses
6 Classes, SysUtils;
7
8type
9
10 // TListInteger<Integer, Integer>
11 TGListObjectIndex = Integer;
12 TGListObjectItem = TObject;
13 {$DEFINE INTERFACE}
14 {$I 'GenericListObject.inc'}
15
16 TListObject = class(TGListObject)
17 end;
18
19implementation
20
21{$DEFINE IMPLEMENTATION_USES}
22{$I 'GenericListObject.inc'}
23
24{$DEFINE IMPLEMENTATION}
25{$I 'GenericListObject.inc'}
26
27
28end.
Note: See TracBrowser for help on using the repository browser.