home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / TUTORIAL / ICLCC / TUTOR1 / PERSON.H < prev    next >
C/C++ Source or Header  |  1993-05-07  |  2KB  |  36 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.  
  21. class Person {
  22.         ...... name;
  23. public:
  24.         Person(char* n) : name(n)  { }
  25.         Person(Person const & person) : name(person.name)  { }
  26.         Person& operator = (Person const & person) {
  27.           name = person.name;
  28.           return *this;
  29.         }
  30.  
  31.         char* getName() {
  32.                 return (name.getText());
  33.         }
  34. };
  35.  
  36.