Hi !

I have some member function templates like:

Code:
class CMyClass : public CMyBase
{
public:
     template < class T > BOOL Find( std::vector< T > elem );
}
Since I have many functions, I don't want to implement them inside the class, but below (in the same header file).
The problem is: How can I do this ?

I've tried
Code:
template < class T > BOOL CMyClass::Find( std::vector< T > elem )
{
  ...
}
but this doesn't work.
Do you have any other ideas ?

Thanks !