When I want to define a method declared in a template class, but that the method doesn\'t depend on the template parameters, have I to define it in the include files as :>
You need to do it this way:
template class
void MyClass::myMethod()
{
...
}
It's not the method that is templated, it's the class.
You can have a templated method in a non-templated class, a non-templated method in a templated class (your case) and a templated method in a templated class, and of course a non-templated method in a non-templated class.