FACT++  1.0
SLList::SLList ( )
inline

Definition at line 17 of file sllist.hxx.

17  {
18  DISABLE_AST
19  head = new SLLItem();
20  curr = head;
21  ENABLE_AST
22  }
SLLItem * head
Definition: sllist.hxx:14
SLLItem * curr
Definition: sllist.hxx:15