Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
C++ Specific —>
friendclass-name**;**
friendfunction-declarator**;**
The friend keyword allows a function or class to gain access to the private and protected members of a class. See Friend Classes and Friend Functions for examples. Also see class, public, private, protected.
END C++ Specific