vote up 4 vote down star
1

I have code like this:

template <typename T, typename U> struct MyStruct {
    T aType;
    U anotherType;
};

class IWantToBeFriendsWithMyStruct
{
    friend struct MyStruct; //what is the correct syntax here ?
};

What is the correct syntax to give friendship to the template ?

flag

80% accept rate

3 Answers

vote up 8 vote down check
class IWantToBeFriendsWithMyStruct
{
    template <typename T, typename U>
    friend struct MyStruct;
};

Works in VS2008, and allows MyStruct to access the class.

link|flag
Cool ! that works (I can't vote yet, I will when registered) – David Oct 15 '08 at 19:27
Note that this gives all types of MyStruct access to IWantToBeFriends, it is also possible to grant specific specializations of MyStruct access. – Greg Rogers Oct 15 '08 at 19:29
It works in g++ as well. – Martin York Oct 15 '08 at 19:32
vote up -2 vote down

Rough sketch:

class A;
class B{ friend class A; /*stuff*/}
class A{friend class B; /*stuff*/}

That's known as a forward declaration, and my precise syntax may be a little wiggy.

link|flag
I'm not the guy who down-voted you, but I thought you'd appreciate an explanation: the question was specifically about template classes. – Head Geek Oct 16 '08 at 1:40
vote up 6 vote down

According to this site, the correct syntax would be

class IWantToBeFriendsWithMyStruct
{
    template <typename T, typename U> friend struct MyStruct; 
}
link|flag

Your Answer

Get an OpenID
or

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