#include <Unbounded_Queue.h>
Collaboration diagram for ACE_Unbounded_Queue_Const_Iterator:

Public Methods | |
| ACE_Unbounded_Queue_Const_Iterator (const ACE_Unbounded_Queue< T > &q, int end=0) | |
| int | next (T *&next_item) |
| Pass back the next_item that hasn't been seen in the queue. Returns 0 when all items have been seen, else 1. More... | |
| int | advance (void) |
| Move forward by one element in the set. Returns 0 when all the items in the queue have been seen, else 1. More... | |
| int | first (void) |
| Move to the first element in the queue. Returns 0 if the queue is empty, else 1. More... | |
| int | done (void) const |
| Returns 1 when all items have been seen, else 0. More... | |
| void | dump (void) const |
| Dump the state of an object. More... | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. More... | |
Private Attributes | |
| ACE_Node< T > * | current_ |
| Pointer to the current node in the iteration. More... | |
| const ACE_Unbounded_Queue< T > & | queue_ |
| Pointer to the queue we're iterating over. More... | |
Definition at line 80 of file Unbounded_Queue.h.
|
||||||||||||||||
|
Definition at line 329 of file Unbounded_Queue.cpp.
|
|
||||||||||
|
Move forward by one element in the set. Returns 0 when all the items in the queue have been seen, else 1.
Definition at line 337 of file Unbounded_Queue.cpp. References current_, and queue_.
|
|
||||||||||
|
Returns 1 when all items have been seen, else 0.
Definition at line 353 of file Unbounded_Queue.cpp. References ACE_TRACE, current_, and queue_.
|
|
||||||||||
|
Dump the state of an object.
Definition at line 323 of file Unbounded_Queue.cpp.
00324 {
00325 // ACE_TRACE ("ACE_Unbounded_Queue_Const_Iterator<T>::dump");
00326 }
|
|
||||||||||
|
Move to the first element in the queue. Returns 0 if the queue is empty, else 1.
Definition at line 345 of file Unbounded_Queue.cpp. References current_, and queue_.
|
|
||||||||||
|
Pass back the next_item that hasn't been seen in the queue. Returns 0 when all items have been seen, else 1.
Definition at line 361 of file Unbounded_Queue.cpp. References current_, and queue_.
|
|
|||||
|
Declare the dynamic allocation hooks.
Definition at line 107 of file Unbounded_Queue.h. |
|
|||||
|
Pointer to the current node in the iteration.
Definition at line 111 of file Unbounded_Queue.h. |
|
|||||
|
Pointer to the queue we're iterating over.
Definition at line 114 of file Unbounded_Queue.h. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002