home *** CD-ROM | disk | FTP | other *** search
/ Microsoftware Monthly 19…2 Programming Power Tools / MASO9512.ISO / cpptutor / cpptutor.arj / CH14 / A14138.TXT < prev    next >
Encoding:
Text File  |  1993-09-28  |  375 b   |  7 lines

  1. The List class declares virtual member functions that are
  2. overridden in DLList and SLList.  When the client code is passed a
  3. reference to a DLList object or an SLList object, it treats the
  4. reference like a reference to a List object.  When a member
  5. function is called in the client code, the appropriate definition
  6. is invoked, thanks to the virtual function mechanism.
  7.