LockListIter Class Reference

#include <Lock.h>

Collaboration diagram for LockListIter:

Collaboration graph
[legend]

Public Member Functions

 LockListIter ()
 LockListIter (LockHashNode *head)
LockHashNodenext ()

Friends

class LockList

Detailed Description

Definition at line 53 of file Lock.h.


Constructor & Destructor Documentation

LockListIter::LockListIter (  )  [inline]

Definition at line 57 of file Lock.h.

00057 {}

LockListIter::LockListIter ( LockHashNode head  )  [inline]

Definition at line 58 of file Lock.h.

00058 { iter = head;}


Member Function Documentation

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 }


Friends And Related Function Documentation

friend class LockList [friend]

Definition at line 60 of file Lock.h.


The documentation for this class was generated from the following files:
Generated on Mon Jun 9 22:48:27 2008 for csql by  doxygen 1.4.7