Here is a small code example :
template <typename T>
class A
{
//
}
class B
{
friend class A<..>
}
In this case, I want A
to be declared as a friend class but without specifying the template parameters...
Here is a small code example :
template <typename T>
class A
{
//
}
class B
{
friend class A<..>
}
In this case, I want A
to be declared as a friend class but without specifying the template parameters...