Tagged Questions

5
votes
3answers
209 views

Inheriting friendship in C++?

Since class friendship is not inherited in C++, what's the best way to "fake" it? I was thinking about exposing the friend class's private interface through protected methods in the to-be-inherited ...
1
vote
2answers
47 views

friend class doesn't do well with me?

I am trying to deal with friend class for the first time. I wrote the code below: class Kind{ private: friend class Type; int x; public: Kind(){ x=0; } void setX(int X) { x =X; } ...