Vincent RICHOMME wrote:
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 ??
template<...> friend class CEnumBinder;
};
Is it possible to declare a specialized class as a friend ?
friend class CEnumBinder<int,double>;
Victor
--
Please remove capital As from my address when replying by mail
.