vote up 1 vote down star

Hello, suppose that I have a class A with several subclasses (B, C, and D). I need B C and D to access some protected members from a class E. Is it possible to make B, C and D friends of E in a single hit without having to list them all?

I have tried with:

class E {

    friend class A;

    ...

};

But this doesn't work.

Thank you

flag

See parashift.com/c++-faq-lite/friends.html/… on why friendship isn't inherited, transitive, or reciprocal. – Bill Oct 2 at 13:51

1 Answer

vote up 12 vote down check

You can put protected accessor functions in A, and have A be a friend of E. That way, all derived classes of A can access the members of E via the accessor functions.

link|flag
+1, exactly what i was thinking – unknown (google) Oct 2 at 11:25
That's not exactly what I wanted, but it's ok :) thank you – tunnuz Oct 2 at 12:57

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.