home *** CD-ROM | disk | FTP | other *** search
- {*
- *
- * Copyright (c) 1992 by Richard W. Hansen
- *
- * This source code will compile.
- * Unpacked source is available to registered users.
- *
- *}
- UNIT TvColl;{$I TVDEFS.INC}INTERFACE USES Objects;TYPE PUnsortedStringCollection=^TUnsortedStringCollection;
- TUnsortedStringCollection=Object(TStringCollection)Procedure Insert(Item:Pointer);Virtual;end;IMPLEMENTATION
- Procedure TUnsortedStringCollection.Insert(Item:Pointer);begin AtInsert(Count,Item);end;END.
-