class T : public std::string {
public:
T(char* s) : std::string(s){};
};
class X : public T {
public:
X(char* s) : T(s) {};
~X() {};
};
template <typename T> T doIt(const T arg);
int main(int argc, const char* argv[]) {
X s("initial string");
T s2 = doIt(s);
printf("out %s", s2.c_str());
}
T doIt(T arg) {
arg.append(" appended");
return arg;
};
What is the problem with my code.. the output is bellow...
1>Linking...
1>TemplateStuding1.obj : error LNK2001: unresolved external symbol "class X __cdecl doIt(class X)" (??$doIt@VXClass@@@@YA?AVXClass@@V0@@Z)
1>D:\Programming\cpp\cpp-how-to-program\CppHowToProgram\Release\Test.exe : fatal error LNK1120: 1 unresolved externals
class Tandtemplate <class T>) stems from an attempt to get this feature in C++. – Ken Bloom Aug 11 '11 at 5:50javatag though, because my editorial policy is that you don't put ajavatag on a question when you know what you're doing injavabut want to know how to do it in a different language. – Ken Bloom Aug 11 '11 at 5:51Tintemplate <class T>(as opposed to some other letter likeQ,X, orZ)? It would go a long way to helping us clarify some of the issues in your sample code. – Ken Bloom Aug 11 '11 at 5:54