C++ friend function references
I have this situation (two classes with two different header files): b.h #include "a.h" class B { friend void B* A::create(void); private: int x; }; a.h #include "b.h" class A { public: void B* create(void); ... }; basically class A creates "B" objects. I want to give the creation function create() acce...