This time I am making an orderedLinkedList program, which will not compile for me. The code is all way too long to put on here, so I will show you the errors I am getting. Please give me any input on what you think the errors could be caused by. I cannot find any help searching on google. There are 3 files for this program...2 .h files and 1 .cpp file. The code is straight from the book as it shows it, and I still get these errors. I do not know why I am getting a "not declared in scope" error. I went back and checked through the book and the code is matched perfectly for all 3 files.
In file included from testProgLinkedList.cpp:2:
orderedLinkedList.h: In member function `bool orderedLinkedListType<Type>::search(const Type&)':
orderedLinkedList.h:43: error: `first' was not declared in this scope
orderedLinkedList.h: In member function `void orderedLinkedListType<Type>::insertNode(const Type&)':
orderedLinkedList.h:74: error: `first' was not declared in this scope
orderedLinkedList.h:77: error: no post-increment operator for type
orderedLinkedList.h:97: error: no post-increment operator for type
orderedLinkedList.h:103: error: no post-increment operator for type
orderedLinkedList.h: In member function `void orderedLinkedListType<Type>::deleteNode(const Type&)':
orderedLinkedList.h:116: error: `first' was not declared in this scope
orderedLinkedList.h:150: error: no post-decrement operator for type