This is the part of code which i am using:
Friend.hpp
namespace tfriend
{
namespace thost
{
template<typename T>
class _Host;
template<typename T>
struct Host
{
typedef shared_ptr<_Host<T>> type;
}
}
}
namespace tfriend
{
class _Friend
{
.....
public:
void access();
private:
thost::Host<>::type _host;
.....
};
}
Friend.cpp
void
_Friend::access()
{
_host->add();
}
Host.hpp
namespace tfriend
{
class _Friend;
}
namespace tfriend
{
namespace thost
{
template<typename T>
class _Host
{
.....
friend class tfriend::_Friend;
.....
private:
void add();
.....
};
.....
template<typename T>
_Host<T>::add()
{
...
}
}
}
but my friend class is unable to access the private member of the _Host class saying that "add" is not visible, because it is private. But friend class can access the private members also, so whats wrong with the above code snippet.
addis private, but in factadddoesn't even exist in the_hostobject shown here!_hostis of typeshared_ptr, so the private members of the completely unrelated_Hostclass are irrelevant. – Rob Kennedy May 22 '12 at 15:41