B
Boni
Dear all,
ist it possible to have a template class or func as friend of other class:
Folowing returns syntax errors
template< typename T> class test{};
template< typename T> int func (Ta);
class A{
friend class test;
friend int func (???);
}
ist it possible to have a template class or func as friend of other class:
Folowing returns syntax errors
template< typename T> class test{};
template< typename T> int func (Ta);
class A{
friend class test;
friend int func (???);
}