home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cset21v1.zip / IBMCPP / TUTORIAL / ICLCC / TUTOR2 / PERSON.H < prev    next >
C/C++ Source or Header  |  1993-05-07  |  2KB  |  42 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.         String 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.         String const & getName() const {
  32.                 return (name);
  33.         }
  34.  
  35.        int operator .. (Person const& anOther)const {
  36.         return (name ==  ............);
  37.        }
  38. };
  39. inline int compare (Person const & p1, Person const & p2) {
  40.    return .......(p1........(), p2........());
  41. }
  42.