How I declare B's constructor to be a friend of A? I tried:

class A
{
  private:
   A();
  public:
   friend B::B();
};

class B
{
  public:
    B();
};
link|improve this question

50% accept rate
4  
Just edited it so it wouldn't be closed. Some trigger happy closers there -- give some slack to potential non-native speaker or newbies please. @IamMan, welcome to StackOverflow -- try to make questions clear and indent code properly or else the question will get closed if a lot of us don't understand it. Also, if someone answers the question correctly, click the check mark to the left it to indicate that it's the correct answer. – Lou Franco Dec 4 '10 at 20:36
feedback

1 Answer

up vote 7 down vote accepted

replace B:: with class;

class A
{
private:
    A();
public:
   friend class B;
};

class B
{
public:
    B();
};
link|improve this answer
This answer actually makes ALL of B a friend. It's probably what the OP wanted, but not what they asked for. What they asked for is impossible. Other people searching for an answer to this question should be made aware. – Crazy Eddie Dec 4 '10 at 22:27
feedback

Your Answer

 
or
required, but never shown

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