#ifndef __PERSON_H #define __PERSON_H class Person { public: Person(const char * name, const char * address); bool marry(const Person &spouse ); void move_to(const char * address); const char *name(); const char *address(); bool is_married(); Person *spouse(); private: char *_name; char *_address; Person * _spouse; }; #endif // __PERSON_H