I have some (weird?) problem with a template class I'm writing. First, I have a template class called CTree for storing generic data. Then, I declare an instance of it. When I link the whole program, I get an error: external symbol not defined "public: int const __thiscall IcdTree::AddNode ... ".
What could that be? The method it references is defined, and the .cpp file is included in the project.

Thanks, Martin