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