How can I solve this error?
My header file
template<typename T>
class C1 {
public:
typedef std::vector<T::F> TFV;
TFV Function1();
};
My CPP file
template<typename T>
TFV C1::Function() //error: ‘TFV’ does not name a type
{ }
|
|
|
First of all, use the
Secondly,
Finally, the definition of member functions of a class template should be placed in a header file, unless you are providing explicit instantiations for all the template instantiations you would otherwise implicitly generate. Failing to do so will most likely result in an unresolved references error from the linker. |
|||||||||||
|
|
Having C++11? Then use trailing return types.
This works because after the parameters of the function, |
|||||
|