C
Chris B
Im trying out VS.NET 2003 by trying to make my own single linked list
library. Im trying to use templates but keep getting LNK2019 errors.
Right now I slimmed down my project to just the main.cpp, linked
list.cpp/h and Node.cpp/h
My error messages:
LibTest error LNK2019: unresolved external symbol "public: __thiscall
CSL::SingleLinkedList<int>::~SingleLinkedList<int>(void)"
(??1?$SingleLinkedList@H@CSL@@QAE@XZ) referenced in function _main
LibTest error LNK2019: unresolved external symbol "public: void
__thiscall CSL::SingleLinkedList<int>::Reverse(void)"
(?Reverse@?$SingleLinkedList@H@CSL@@QAEXXZ) referenced in function
_main
I posted the basics of my code at this link:
http://www.rafb.net/paste/results/OE4JNE25.html
I left out some to save space
I'm looking for any suggestions.
library. Im trying to use templates but keep getting LNK2019 errors.
Right now I slimmed down my project to just the main.cpp, linked
list.cpp/h and Node.cpp/h
My error messages:
LibTest error LNK2019: unresolved external symbol "public: __thiscall
CSL::SingleLinkedList<int>::~SingleLinkedList<int>(void)"
(??1?$SingleLinkedList@H@CSL@@QAE@XZ) referenced in function _main
LibTest error LNK2019: unresolved external symbol "public: void
__thiscall CSL::SingleLinkedList<int>::Reverse(void)"
(?Reverse@?$SingleLinkedList@H@CSL@@QAEXXZ) referenced in function
_main
I posted the basics of my code at this link:
http://www.rafb.net/paste/results/OE4JNE25.html
I left out some to save space
I'm looking for any suggestions.