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

  1. The class template "LLStack<T>" defines a family of stacks based
  2. on a linked list.  Notice that "LLStack<T>" is publicly derived
  3. from the abstract base class "Stack<T>".  As a result,
  4. "LLStack<T>" has an is-a relationship with "Stack<T>".  Anywhere
  5. that you can use a "Stack<T>" in your program you can also use an
  6. "LLStack<T>".
  7.