Re: Linked List Questions
Quote:
Originally posted by GraemeW
Evening all,
What I would like to ask is am I calling these functions correctly? I presumed because they were all in the same class I wouldn't need to put something like
Code:
list::RetrieveInfo();
No, you don't need to qualify the member, unless you are calling a parent class's version of RetrieveInfo. Also, don't call your class "list". It will add confusion, since there is a std::list<> class, and a "using namespace std" will screw up your entire class.
Quote:
Im writing my own code rather than relying upon the built in functionality.
One question, why?
Regard,
Paul McKenzie