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

 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 chapter "String and Buffer Classes" in the
   "Application Support Class Library" documentation
   to understand the IString class used in this tutorial.

   Have a look at section "Flat Collections" in chapter
   "Overview of the Collection Classes" in the
   "Collection Class Library Reference".

2) Write a class Person using the IString 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?
ANSWER:    iseq.h
   Which default implementation are you using?
ANSWER: A linked list is the default implementation for a sequence.
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.

