home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / PASCAL / TVTOOL.ZIP / TVCOLL.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1992-10-08  |  468 b   |  12 lines

  1. {*
  2. *
  3. *   Copyright (c) 1992 by Richard W. Hansen
  4. *
  5. *   This source code will compile.
  6. *   Unpacked source is available to registered users.
  7. *
  8. *}
  9. UNIT TvColl;{$I TVDEFS.INC}INTERFACE USES Objects;TYPE PUnsortedStringCollection=^TUnsortedStringCollection;
  10. TUnsortedStringCollection=Object(TStringCollection)Procedure Insert(Item:Pointer);Virtual;end;IMPLEMENTATION 
  11. Procedure TUnsortedStringCollection.Insert(Item:Pointer);begin AtInsert(Count,Item);end;END.
  12.