#include <Lock.h>
Collaboration diagram for LockListIter:
Public Member Functions | |
LockListIter () | |
LockListIter (LockHashNode *head) | |
LockHashNode * | next () |
Friends | |
class | LockList |
Definition at line 53 of file Lock.h.
LockListIter::LockListIter | ( | LockHashNode * | head | ) | [inline] |
LockHashNode * LockListIter::next | ( | ) |
Definition at line 23 of file LockListIter.cxx.
References LockHashNode::next_.
00024 { 00025 if (iter == NULL) return NULL; 00026 LockHashNode *node = iter; 00027 iter = iter ->next_; 00028 return node; 00029 }