Hi !
I have some member function templates like:
Since I have many functions, I don't want to implement them inside the class, but below (in the same header file).Code:class CMyClass : public CMyBase { public: template < class T > BOOL Find( std::vector< T > elem ); }
The problem is: How can I do this ?
I've tried
but this doesn't work.Code:template < class T > BOOL CMyClass::Find( std::vector< T > elem ) { ... }
Do you have any other ideas ?
Thanks !




Reply With Quote