C Language and Libraries Help (clang.hlp) (Table of Contents; Topic list)
friend
                                             Up Contents Index Back
─────C/C++ Language─────────────────────────────────────────────────────────
 
  Keyword:   friend
 
  Syntax:    friend class-name;
             friend function-declarator;
 
  Summary:   Allows a function or class to gain access to the
             private and protected members a class.
             See: Friend Classes
                  Friend Functions
 
  See also:  class, public, private, protected
                                    -♦-