FACT++  1.0
SLLItem* SLList::getNext ( )
inline

Definition at line 45 of file sllist.hxx.

References SLLItem::next.

Referenced by main().

46  {
47  DISABLE_AST
48  if(!curr)
49  curr = head;
50  curr = curr->next;
51  ENABLE_AST
52  return( curr );
53  }
SLLItem * head
Definition: sllist.hxx:14
SLLItem * next
Definition: sllist.hxx:6
SLLItem * curr
Definition: sllist.hxx:15

+ Here is the caller graph for this function: