home *** CD-ROM | disk | FTP | other *** search
- {*
- * TvColl.pas
- *
- * Enhancements to Turbo Vision collections.
- *
- * Copyright 1992 by Richard W. Hansen
- *
- *}
-
- UNIT TvColl;
-
- {$I TVDEFS.INC}
-
- INTERFACE
-
-
- USES
- Objects;
-
-
- TYPE
- { PUnsortedStringCollection stores strings in the order they are inserted
- into the collection.
- }
- PUnsortedStringCollection = ^TUnsortedStringCollection;
- TUnsortedStringCollection = Object(TStringCollection)
- Procedure Insert(Item : Pointer); Virtual;
- end;
-
-
-