#include <NVList.h>
Public Member Functions | |
| NVListIter () | |
| NVListIter (NVList &nvl) | |
| ~NVListIter () | |
| void | attach (NVList &nvl) |
| void | detach () |
| void | first () |
| int | valid () |
| void | next () |
| void | data (const char **data, unsigned int *szdata) |
Private Attributes | |
| NVList * | l |
| NVList::Record * | pos |
| NVList::Record * | tail |
Definition at line 37 of file NVList.h.
|
|
Definition at line 42 of file NVList.h.
00042 {
00043 l = NULL;
00044 pos = NULL;
00045 } NVListIter(NVList & nvl) {
|
|
|
Definition at line 45 of file NVList.h.
|
|
|
Definition at line 50 of file NVList.h. References detach().
00050 {
00051 detach();
00052 }
|
|
|
Definition at line 54 of file NVList.h. References detach(), NVcontainer::getdata(), NVcontainer::lock(), and NVlist::o2r().
|
|
||||||||||||
|
Definition at line 84 of file NVList.h. References NVcontainer::mem_p, and NVlist::r2o().
|
|
|
Definition at line 61 of file NVList.h. References NVcontainer::lock(). Referenced by attach(), and ~NVListIter().
|
|
|
Definition at line 68 of file NVList.h. References NVlist::o2r().
|
|
|
Definition at line 75 of file NVList.h. References NVlist::o2r().
|
|
|
Definition at line 72 of file NVList.h.
00072 {
00073 return pos != NULL;
00074 }
|
|
|
|
|
|
|
|
|
|
1.3.6-20040222