It is possible to declare an entire class as a friend of another class. code example
Example: class friend to another class syntax
class Node {
private:
int key;
Node* next;
/* Other members of Node Class */
// Now class LinkedList can
// access private members of Node
friend class LinkedList;
};