Linking... 
Directory.obj : error LNK2019: unresolved external symbol "public: void __thiscall indexList<class entry,100>::read(class std::basic_istream<char,struct std::char_traits<char> > &)" (?read@?$indexList@Ventry@@$0GE@@@QAEXAAV?$basic_istream@DU?$char_traits@D@std@@@std@@@Z) referenced in function _main

Getting this error and others associated with indexList implementation. I have included all the right files, not sure what this means?

indexList.h
indexList.cpp

Also, using VS .NET 2003 - They are under the "Source Files" and "Header Files" However, I tested with deleting the indexLish.h and the error doesn't change?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

Your class is a templated class. This means when the compiler needs to call a function, it will look at your template definition and from that generate the corresponding code.

For example, the following has obvious errors in it:

template <typename T>
void doSomething(const T& something)
{
    ././.a/at983y62pegha9eg;
}

But as long as you don't call "doSomething", you won't get errors. The problem here is that you have this header file that tells the compiler, "Hey, these functions exist" but when the compiler tries to make them, it looks in your .h, but can't find the actual definition; that's because it is in your .cpp file.

This solution has an answer, but no major compiler vendors implement it. The best solution is to simply define the class in the .h file, or #include the .cpp file, such as you have commented out. Now the compiler (and then the file that included your header) knows what the functions look like so it can make correct instances of the template.

link|improve this answer
feedback

Are you using visual studio then include both the files into the solution and then run.

link|improve this answer
VS .NET 2003 - They are under the "Source Files" and "Header Files" However, I tested with deleting the indexLish.h and the error doesn't change? – Tommy Apr 7 '09 at 1:09
You have define read method twice in cpp? template <class T, int maxSize> void indexList<T, maxSize>::read(istream& ins) template <class T, int maxSize> void indexList<T, maxSize>::read(istream& ins) – Vinay Apr 7 '09 at 1:13
First one commented out. – Tommy Apr 7 '09 at 1:16
feedback

Since you are using templates, the best way is to include the definition in .H file.

I read something from this book . And here is something it may help you too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.