#include <Unbounded_Set_Ex.h>
Public Methods | |
ACE_Unbounded_Set_Ex_Iterator (ACE_Unbounded_Set_Ex< T > &s, int end=0) | |
ACE_Unbounded_Set_Ex_Iterator (const ACE_Unbounded_Set_Ex_Iterator &o) | |
void | operator= (const ACE_Unbounded_Set_Ex_Iterator &o) |
~ACE_Unbounded_Set_Ex_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_Iterator< T > | operator++ (int) |
Postfix advance. | |
ACE_Unbounded_Set_Ex_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_Iterator< T > &) const |
Check if two iterators point to the same position. | |
int | operator!= (const ACE_Unbounded_Set_Ex_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. | |
ACE_Unbounded_Set_Ex< T > * | set_ |
Pointer to the set we're iterating over. | |
int | registered_in_set_ |
|
|
|
|
|
|
|
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.
|