First page Back Continue Last page Graphics
Friend Classes
Any method of the friend class can access private and protected members of the original class.
Example Remote being a friend class of the TV class.
- class TV
- {
- public:
- friend class Remote;
- ...
- class Remote
- {