I am having "unresolved external symbol" linking error for a simple class i wrote along with a header file in VS 2008 using c++.
I moved this class to VS 2008's include directory, so that I don't have to copy the files from one project to other every time creating a new project.
I included the header file in some new project, the file got included alright, I can also see the list functions and data members inside the object of that class file, [ VS 2008 shows me this list after I type '.' ]
But this is not the weird part, the weird part is, the files which I moved to include directory works fine in the original project in which I wrote them.