#include <Unbounded_Set_Ex.h>
Public Methods | |
ACE_Unbounded_Set_Ex_Const_Iterator (const ACE_Unbounded_Set_Ex< T > &s, int end=0) | |
ACE_Unbounded_Set_Ex_Const_Iterator (const ACE_Unbounded_Set_Ex_Const_Iterator &o) | |
void | operator= (const ACE_Unbounded_Set_Ex_Const_Iterator &o) |
~ACE_Unbounded_Set_Ex_Const_Iterator () | |
int | next (T *&next_item) |
int | advance (void) |
int | first (void) |
int | done (void) const |
Returns 1 when all items have been seen, else 0. | |
void | dump (void) const |
Dump the state of an object. | |
ACE_Unbounded_Set_Ex_Const_Iterator< T > | operator++ (int) |
Postfix advance. | |
ACE_Unbounded_Set_Ex_Const_Iterator< T > & | operator++ (void) |
Prefix advance. | |
T & | operator * (void) |
Returns a reference to the internal element <this> is pointing to. | |
int | operator== (const ACE_Unbounded_Set_Ex_Const_Iterator< T > &) const |
Check if two iterators point to the same position. | |
int | operator!= (const ACE_Unbounded_Set_Ex_Const_Iterator< T > &) const |
Public Attributes | |
ACE_ALLOC_HOOK_DECLARE | |
Declare the dynamic allocation hooks. | |
Private Attributes | |
ACE_Node< T > * | current_ |
Pointer to the current node in the iteration. | |
const ACE_Unbounded_Set_Ex< T > * | set_ |
Pointer to the set we're iterating over. | |
int | registered_in_set_ |
The bookkeeping operations are regarded as const. (The member number_of_iterators_ in ACE_Unbounded_Set_Ex is `mutable'.) Some asynchronous activity may cause a deletion under a Const_Iterator so Const_Iterators are registered too. However, the cleanup operation isn't const at all, thus it is not called from const iterators.
|
|
|
|
|
|
|
Move forward by one element in the set. Returns 0 when all the items in the set have been seen, else 1. |
|
Returns 1 when all items have been seen, else 0.
|
|
Dump the state of an object.
|
|
Move to the first element in the set. Returns 0 if the set is empty, else 1. |
|
Pass back the <next_item> that hasn't been seen in the Set. Returns 0 when all items have been seen, else 1. |
|
Returns a reference to the internal element <this> is pointing to.
|
|
|
|
Prefix advance.
|
|
Postfix advance.
|
|
|
|
Check if two iterators point to the same position.
|
|
Declare the dynamic allocation hooks.
|
|
Pointer to the current node in the iteration.
|
|
|
|
Pointer to the set we're iterating over.
|