dyna/person4.hpp

The following code example is taken from the book
Object-Oriented Programming in C++
by Nicolai M. Josuttis, Wiley, 2002
© Copyright Nicolai M. Josuttis 2002


#ifndef PERSON_HPP
#define PERSON_HPP

// include header files
#include <string>

// **** BEGIN namespace CPPBook ********************************
namespace CPPBook {

class Person {
  /* static class members
   */
  private:
    static long maxPID;      // highest ID of all Persons
    static long numPersons;  // current number of all Persons
  public:
    // current number of all Persons
    static long number() {
        return numPersons;
    }

  public:
    // new: special enumeration type for the salutation
    enum Salutation { Mr, Mrs, Ms, empty };

  /* non-static class members
   */
  private:
    Salutation  salut;   // new: salutation (can also be empty)
    std::string lname;   // last name of the Person
    std::string fname;   // first name of the Person
    const long  pid;     // ID of the Person

  public:
    // constructor for last name and optional first name
    Person(const std::string&, const std::string& = "");

    // copy constructor
    Person(const Person&);

    // destructor
    ~Person();

    // assignment
    Person& operator = (const Person&);

    // query of properties
    const std::string& lastname() const {   // return last name
        return lname;
    }
    const std::string& firstname() const {  // return first name
        return fname;
    }
    long id() const {                       // return ID
        return pid;
    }
    const Salutation& salutation() const {  // new: return salutation
        return salut;
    }

    // compare
    friend bool operator == (const Person& p1, const Person& p2) {
        return p1.fname == p1.fname && p2.lname == p2.lname;
    }
    friend bool operator != (const Person& p1, const Person& p2) {
        return !(p1==p2);
    }
    //...
};

// **** END namespace CPPBook ********************************

#endif  // PERSON_HPP