Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
1  
sscce.org - please provide an example that is both short and self-contained. – Robᵩ May 22 '12 at 15:21
it is short enough to explain my problem.. – shobi May 22 '12 at 15:23
1  
no it's too long to explain the problem... try to shorten it – hawk May 22 '12 at 15:24
5  
-1 for posting fake code. You say the error message is that add is private, but in fact add doesn't even exist in the _host object shown here! _host is of type shared_ptr, so the private members of the completely unrelated _Host class are irrelevant. – Rob Kennedy May 22 '12 at 15:41
2  
If it's not copied and pasted directly from your code editor, it's fake. We've already found multiple pieces of evidence to prove it's not your real code, and fixing them piecemeal won't give anyone confidence that we're finally reading real code. Cut down your code to the minimum needed to demonstrate the problem. Then, copy and paste it here along with the exact text of the error message from the compiler. – Rob Kennedy May 22 '12 at 15:50
show 18 more comments

closed as not a real question by ildjarn, BoltClock May 22 '12 at 16:25

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

whats wrong with the above code snippet?

  • There is no return type in _Host<T>::add()
  • You've defined both template<> struct Host and template<> class Host
  • here is no definition for template<> class _Host
  • _Friend::_host is of type shared_ptr<>. But, you are accessing the .add() member. As far as I know, shared_ptr<> has no public .add() member.
  • There is a namespace declaration missing in Friend.cpp.
  • This line is wrong: thost::Host<>::type _host; Doesn't Host take a parameter?
  • Presumably namespace tfreind (which you have twice in Friend.hpp) is meant to be namespace tfriend?
  • You have used identifiers that start with an underscore followed by an upper-case letter. Such identifiers are reserved for the compiler & libraries.

my friend class is unable to access the private member of the _Host class saying that "add" is not visible, because it is private.

After fixing all of the above problems, the following program works fine for me:

namespace tfriend
{
namespace thost
{
template<typename T>
class _Host;

template<typename T>
struct Host
{
typedef _Host<T>* type;
};
}
}

namespace tfriend
{
 class _Friend
 {
public:
void access();
private:
  thost::Host<int>::type _host;
 };
}

namespace tfriend
{
class _Friend;
}
namespace tfriend
{
namespace thost
{
template<typename T>
class _Host
{
friend class tfriend::_Friend;
private:
void add();
};

template<typename T>
void _Host<T>::add()
{
}
}
}

void
tfriend::_Friend::access()
{
 _host->add();
}

int main () {}
share|improve this answer
Downvoter: I have answered both his literal question (what is wrong with my code? - several things) and his intended question (why doesn't friend work? - it does). – Robᵩ May 22 '12 at 16:05

This code works for me:

namespace tfriend {

namespace thost {

template < typename T >
class _Host;

template < typename T >
struct Host
{
  typedef _Host<T>* type;
};

}}

namespace tfriend {

class _Friend {

public:
  void access();
private:
  typename thost::Host<int>::type _host;
};

}

namespace tfriend { class _Friend; }

namespace tfriend { namespace thost {

template < typename T >
class _Host {

  friend class tfriend::_Friend;

private:
  void add();
};

template < typename T >
void _Host<T>::add() {}

}}


namespace tfriend {

void _Friend::access() { _host->add(); }

}

int main() {
  tfriend::_Friend f;
  f.access();
}
share|improve this answer

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