Hi,
I have class A and I would like to declare the following templated
class as a friend
template <typename Tenum, typename Tproperties>
class CEnumBinder
class A
{
public:
// How to declare CEnumBinder as a friend ??
};
Is it possible to declare a specialized class as a friend ?