I have the following code which compiles in VC6 :
Text.h:
template <typename T>
class CTextT
{
public:
friend CTextT add(const CTextT& text1, const CTextT& text2) ;
friend CTextT operator+(const CTextT& string1, const CTextT& string2)
{
return ::add(string1, string2);}
}
....................
};
And at the end of the header
#include "Text.inl"
Text.inl:
template <typename T>
CTextT<T> add(const CTextT<T>& text1, const CTextT<T>& text2)
{
CTextT<T> temp ;
// do something
return temp ;
}
But VC2010 gives me LINK error:
error LNK2019: unresolved external symbol "class CTextT<char> __cdecl add(class CTextT<char> const &,class CTextT<char> const &)" (?add@@YA?AV?$CTextT@D@@ABV1@0@Z)
referenced in function "class CTextT<char> __cdecl operator+(class CTextT<char> const &,class CTextT<char> const &)" (??H@YA?AV?$CTextT@D@@ABV0@0@Z)
1>.DebugUnitTestText.exe : fatal error LNK1120: 1 unresolved externals
If I place the code in the Text.h it compiles fine. But I do not want to do this because I want to keep declaration clean from implementation. I can't figure why linker is complaining in this case when the function is outside the class? This is the only problem and the class is very big and there are other friend functions returning CTextT.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…