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 >
Pascal/Delphi Source File  |  1998-04-08  |  154b  |  11 lines

  1. unit StrIter;
  2.  
  3. interface
  4. uses Iter;
  5. type TStrIter=class(TIter)
  6.         function Current:string;virtual;abstract;
  7.      end;
  8. implementation
  9.  
  10. end.
  11.