There is following c++ raw code:
template<typename T>
class A {
private:
// here I want to access B::SomeStruct to create SomeStruct field in class A
};
template<typename T>
class B {
private:
template<typename Tp>
friend class A;
struct SomeStruct {
void some_field;
};
};
In class A I want to create a field with the type of SomeStruct
- struct declared in class B as a private member. Does it even possible?
Restrictions:
- Forbidden to create a global struct, accessible both A and B classes.
- Forbidden to create any public fields in class B.
This would be one way. All
B
:s befriends allA
:s andA<T>
has aB<T>::SomeStruct
member: