DCL 4.0
Loading...
Searching...
No Matches
ConstListIteratorBase Class Reference

#include <ListBase.h>

Inheritance diagram for ConstListIteratorBase:
LISTED_HASHMAP_T::ConstIterator LISTED_HASHMAP_T::ReverseConstIterator LIST_T::ConstIterator LIST_T::ReverseConstIterator

Public Member Functions

bool operator== (const ConstListIteratorBase &x) const
bool operator!= (const ConstListIteratorBase &x) const
bool operator== (const ListIteratorBase &x) const
bool operator!= (const ListIteratorBase &x) const

Protected Attributes

const NodeBase__pNode

Detailed Description

Definition at line 34 of file ListBase.h.

Member Function Documentation

◆ operator!=() [1/2]

bool ConstListIteratorBase::operator!= ( const ConstListIteratorBase & x) const
inline

Definition at line 70 of file ListBase.h.

71{
74 return __pNode != x.__pNode;
75}
#define NULL
Definition Config.h:340
#define __DCL_ASSERT(expr)
Definition Object.h:371
const NodeBase * __pNode
Definition ListBase.h:44

◆ operator!=() [2/2]

bool ConstListIteratorBase::operator!= ( const ListIteratorBase & x) const
inline

Definition at line 84 of file ListBase.h.

85{
88 return __pNode != x.__pNode;
89}
NodeBase * __pNode
Definition ListBase.h:30

◆ operator==() [1/2]

bool ConstListIteratorBase::operator== ( const ConstListIteratorBase & x) const
inline

Definition at line 63 of file ListBase.h.

64{
67 return __pNode == x.__pNode;
68}

◆ operator==() [2/2]

bool ConstListIteratorBase::operator== ( const ListIteratorBase & x) const
inline

Definition at line 77 of file ListBase.h.

78{
81 return __pNode == x.__pNode;
82}

Member Data Documentation

◆ __pNode

const NodeBase* ConstListIteratorBase::__pNode
protected

Definition at line 44 of file ListBase.h.


The documentation for this class was generated from the following file: