here's the line I'm having trouble with:
while(CurrentNode.GetNext() != 0){
CurrentNode is a pointer to an object. GetNext Returns a pointer to another object of the same class (or zero, if there are no more objects).
the error I get (Borland Builder 5) is: E2294 Structure required on left side of . or .*
I hope this is something dumb that I'm just forgetting.
while(CurrentNode.GetNext() != 0){
CurrentNode is a pointer to an object. GetNext Returns a pointer to another object of the same class (or zero, if there are no more objects).
the error I get (Borland Builder 5) is: E2294 Structure required on left side of . or .*
I hope this is something dumb that I'm just forgetting.
