home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / TVTOOL.ZIP / TVCOLL.INT < prev    next >
Encoding:
Text File  |  1992-10-08  |  505 b   |  31 lines

  1. {*
  2. *   TvColl.pas
  3. *
  4. *   Enhancements to Turbo Vision collections.
  5. *
  6. *   Copyright 1992 by Richard W. Hansen
  7. *
  8. *}
  9.  
  10. UNIT TvColl;
  11.  
  12. {$I TVDEFS.INC}
  13.  
  14. INTERFACE
  15.  
  16.  
  17. USES
  18.   Objects;
  19.  
  20.  
  21. TYPE
  22.   { PUnsortedStringCollection stores strings in the order they are inserted
  23.     into the collection.
  24.   }
  25.   PUnsortedStringCollection  = ^TUnsortedStringCollection;
  26.   TUnsortedStringCollection  = Object(TStringCollection)
  27.     Procedure   Insert(Item : Pointer);                 Virtual;
  28.   end;
  29.  
  30.  
  31.