FACT++  1.0
DLLItem* DLList::getNext ( )
inline

Definition at line 68 of file dllist.hxx.

References DLLItem::next.

69  {
70  DISABLE_AST
71  curr = curr->next;
72  if(curr == head)
73  {
74  ENABLE_AST
75  return((DLLItem *)0);
76  }
77  ENABLE_AST
78  return( curr );
79  }
DLLItem * next
Definition: dllist.hxx:6
DLLItem * head
Definition: dllist.hxx:16
DLLItem * curr
Definition: dllist.hxx:17