/*************************************************************************

 IBM(R) VisualAge(TM) C++ for OS/2(R), Version 3
  - Collection Class Library -

 (C) Copyright IBM Corp. 1991, 1995.
  - Licensed Material - Program-Property of IBM - All Rights Reserved.

 *************************************************************************/


Tutorial 1: Getting started instantiating a Collection Class and calling
            a method within the specified collection class.
            You want to manage a list of people.
            The type of your list shall be an ordinary SEQUENCE.

1) Read and understand the given String class in tstring.h.
   Have a look at the chapter "Flat Collections" in the "Library
   Overview".
2) Write a class Person using the given String class.
   For this example, a person only has a name.
3) Write a typedef statement to define your collection of Person.
   Which file do you have to include?
   Which default implementation are you using?
4) Define an object of the created class in the main program.
5) Have a look at the chapter SEQUENCE which contains all methods which
   can be called.


Have a look at the results with your debugger.
