source: DelphiTemplates/Specialized/ListInteger.pas

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