I think I really should explain myself about my question :p
So, I have a class c (let's start from the end), in this class c I want to use an attribute which is defined in class A. But my class c does not inherit from A, it is a friend of class b which inherit from A.
If i can, how cans i access this attribute ?
A little example in some kind of c++
class A
protected:
type THE_Attribute
class B: class A
...
public:
friend class c<type>;
class c:
....
public:
Need(THE_Attribute);
I hope you understood my question, thanks :)