home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2000 February
/
Chip_2000-02_cd.bin
/
zkuste
/
Delphi
/
navody
/
tt
/
objvm.exe
/
UNITS
/
StrIter.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1998-04-08
|
154b
|
11 lines
unit StrIter;
interface
uses Iter;
type TStrIter=class(TIter)
function Current:string;virtual;abstract;
end;
implementation
end.