A question about declaring a friend class. The following does not compile:
template
class B
{
public:
friend class C;
};
g++4.0.1 returns the error message
error: using template type parameter 'C' after 'class'
So, is there a way to declare a friend class from the template parameter?
--
// kira