Show differencesHistory of post edits
#ActualBrother Bob
Posted 28 May 2012 - 09:58 AM
Looks like the typical error where you try to define the templates in a separate file. Declaration and definition cannot be separate; the full declaration of everything has to be visible at every point where the template is instantiated. Put the code for all your functions in the header file instead of in a separate file.
#1Brother Bob
Posted 28 May 2012 - 09:58 AM
Looks like the typical error where you try to define the templates in a separate file. Declaration and definition cannot be separate; the full declaration everything has to be visible at every point where the template has to be instantiated. Put the code for all your functions in the header file instead of in a separate file.