The boilerplate *.cpp code for a template class looks currently like
func.cpp:
Func::~Func ( ){
}
while it should be
func_improved.cpp:
template
Func::~Func ( ){
}
where the template class header is
func.h:
template
// interface
class Func {
// Associations
// Attributes
// Operations...
2008-10-02 14:26:44 UTC in dia2code