friendship example and c++ class templates syntax friend

c++ - example - ¿Cómo se marca una plantilla de estructura como amigo?



friend class c++ example (2)

Según este sitio , la sintaxis correcta sería

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

Tengo un código como este:

template <typename T, typename U> struct MyStruct { T aType; U anotherType; }; class IWantToBeFriendsWithMyStruct { friend struct MyStruct; //what is the correct syntax here ? };

¿Cuál es la sintaxis correcta para dar amistad a la plantilla?


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

Funciona en VS2008 y permite a MyStruct acceder a la clase.