home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / TUTORIAL / ICLCC / TUTOR4 / SOLUTION / EXAMPLE4.C next >
C/C++ Source or Header  |  1993-05-07  |  2KB  |  46 lines

  1. /******************************************************************************/
  2. /*                                                                            */
  3. /* COPYRIGHT:                                                                 */
  4. /* ----------                                                                 */
  5. /* Copyright (C) International Business Machines Corp., 1991,1992.            */
  6. /*                                                                            */
  7. /* DISCLAIMER OF WARRANTIES:                                                  */
  8. /* -------------------------                                                  */
  9. /* The following [enclosed] code is sample code created by IBM                */
  10. /* Corporation.  This sample code is not part of any standard IBM product     */
  11. /* and is provided to you solely for the purpose of assisting you in the      */
  12. /* development of your applications.  The code is provided "AS IS",           */
  13. /* without warranty of any kind.  IBM shall not be liable for any damages     */
  14. /* arising out of your use of the sample code, even if they have been         */
  15. /* advised of the possibility of such damages.                                */
  16. /*                                                                            */
  17. /******************************************************************************/
  18. #include <tstring.h>
  19. #include <iglobals.h>
  20. #include <person.h>
  21.  
  22. #include <iseq.h>
  23. typedef ISequence <Person>  People;
  24.  
  25. int main () {
  26.         People people;
  27.    try{
  28.         people.add("J. Uhl");
  29.         people.add("M. Blum");
  30.         people.add("T. Wappler");
  31.         people.add("F. Seliger");
  32.         people.add("H. Wingert");
  33.         people.add("C. Ludwig");
  34.  
  35. //      people.addAtPosition(100,"K. Liegert");
  36.         people.addAsLast("K. Liegert");
  37.  
  38.  
  39.       }
  40.      catch (IException & iException){
  41.          cout << iException.name();
  42.          return 1;
  43.      }
  44.         return 0;
  45. }
  46.