Possible Duplicate:
Friend scope in C++
I am new to c++ and just wondering it!
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
In the above example foo class can't call barMe() You need to define the classes this way in order that the friend be mutual:
|
|||
|
|
|
The friend relationship is only one-way in general - but there is nothing to stop you declaring Class A a friend of class B AND class B a friend of class A. So a mutual relationship can be established |
|||
|
|