I have a doubly linked list class (and a node class). I've tested both their functions in main() and everything works the way it should.
However, I'm now trying to template both classes and I'm having problems. I've read tutorials and spent a few days on this yet I can't seem to get it right. If someone could look over my code I would really appreciate it!
the error i'm getting right now is in main.cpp when i create a DLList object for testing.
main.cpp|43|undefined reference to DLList<int>::DLList()
DLList<int> testList;
i've also tried DLList<DLNode> testList. I guess I'm not sure which to use (neither work though)