home *** CD-ROM | disk | FTP | other *** search
/ PC World 1998 October / PCWorld_1998-10_cd.bin / software / prehled / komix / DATA.Z / ORefSet.4gh < prev    next >
Text File  |  1996-07-02  |  685b  |  26 lines

  1. -----------------------------------------------------------------------------
  2. --
  3. --      (c)     Westmount Technology    1994
  4. --
  5. --    File:        @(#)ORefSet.4gh    1.1
  6. --    Author:
  7. --    Description:    An ordered set of object references
  8. --
  9. -----------------------------------------------------------------------------
  10.  
  11. INCLUDE SYSTEM "ixvector.4gh"
  12.  
  13. CLASS ORefSet DERIVED FROM ixVector
  14.     PRIVATE VARIABLE curr INTEGER
  15.  
  16.     FUNCTION ORefSet(increment INTEGER: 10)
  17.  
  18.     FUNCTION append(ref ixObject) RETURNING INTEGER
  19.     FUNCTION remove(ref ixObject) RETURNING VOID
  20.  
  21.     FUNCTION size() RETURNING INTEGER
  22.  
  23.     FUNCTION first() RETURNING ixObject
  24.     FUNCTION next() RETURNING ixObject
  25. END CLASS
  26.