Why should the implementation and the declaration of a template class be in the same header file? Could any of you explain it by example?
Answer
The compiler needs to have access to the entire template definition (not just the signature) in order to generate code for each instantiation of the template, so you need to move the definitions of the functions to your header.
For more details read about The Inclusion Model.
No comments:
Post a Comment