home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH10 / A10142.TXT < prev    next >
Encoding:
Text File  |  1993-09-24  |  434 b   |  8 lines

  1. This ListIter class has three data members.  The member "list" is
  2. a pointer to the first item in the associated List object.  The
  3. pointer "current" points to the current item in the list.  The
  4. pointer "prior" points to the item immediately preceding it.  An
  5. application program could have several list iterators and each
  6. could be at a different position in the List object.  The PhoneBk
  7. class uses only one iterator at a time.
  8.