#include <Containers_T.h>
Collaboration diagram for ACE_Ordered_MultiSet_Iterator:

Public Methods | |
| ACE_Ordered_MultiSet_Iterator (ACE_Ordered_MultiSet< T > &s) | |
| int | next (T *&next_item) const |
| Pass back the <next_item> that hasn't been seen in the ordered multiset. Returns 0 when all items have been seen, else 1. More... | |
| int | first (void) |
| Repositions the iterator at the first item in the ordered multiset Returns 0 if the list is empty else 1. More... | |
| int | last (void) |
| Repositions the iterator at the last item in the ordered multiset Returns 0 if the list is empty else 1. More... | |
| int | advance (void) |
| Move forward by one element in the set. Returns 0 when all the items in the set have been seen, else 1. More... | |
| int | retreat (void) |
| Move backward by one element in the set. Returns 0 when all the items in the set have been seen, 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... | |
| T & | operator * (void) |
| Returns a reference to the internal element <this> is pointing to. More... | |
Public Attributes | |
| ACE_ALLOC_HOOK_DECLARE | |
| Declare the dynamic allocation hooks. More... | |
Private Attributes | |
| ACE_DNode< T > * | current_ |
| Pointer to the current node in the iteration. More... | |
| ACE_Ordered_MultiSet< T > & | set_ |
| Pointer to the set we're iterating over. More... | |
Friends | |
| class | ACE_Ordered_MultiSet< T > |
Definition at line 1652 of file Containers_T.h.
|
||||||||||
|
Definition at line 1773 of file Containers_T.cpp.
|
|
||||||||||
|
Move forward by one element in the set. Returns 0 when all the items in the set have been seen, else 1.
Definition at line 218 of file Containers_T.i. References ACE_TRACE, and current_.
|
|
||||||||||
|
Returns 1 when all items have been seen, else 0.
Definition at line 238 of file Containers_T.i. References ACE_TRACE, and current_.
|
|
||||||||||
|
Dump the state of an object.
Definition at line 246 of file Containers_T.i.
00247 {
00248 // ACE_TRACE ("ACE_Ordered_MultiSet_Iterator<T>::dump");
00249 }
|
|
||||||||||
|
Repositions the iterator at the first item in the ordered multiset Returns 0 if the list is empty else 1.
Definition at line 200 of file Containers_T.i. References ACE_TRACE, current_, and set_.
|
|
||||||||||
|
Repositions the iterator at the last item in the ordered multiset Returns 0 if the list is empty else 1.
Definition at line 209 of file Containers_T.i. References ACE_TRACE, current_, and set_.
|
|
||||||||||
|
Pass back the <next_item> that hasn't been seen in the ordered multiset. Returns 0 when all items have been seen, else 1.
Definition at line 1781 of file Containers_T.cpp. References current_. Referenced by operator *.
|
|
||||||||||
|
Returns a reference to the internal element <this> is pointing to.
Definition at line 1794 of file Containers_T.cpp. References ACE_ASSERT, and next.
01795 {
01796 //ACE_TRACE ("ACE_Ordered_MultiSet_Iterator<T>::operator*");
01797 T *retv = 0;
01798
01799 int result = this->next (retv);
01800 ACE_ASSERT (result != 0);
01801 ACE_UNUSED_ARG (result);
01802
01803 return *retv;
01804 }
|
|
||||||||||
|
Move backward by one element in the set. Returns 0 when all the items in the set have been seen, else 1.
Definition at line 228 of file Containers_T.i. References ACE_TRACE, and current_.
|
|
|||||
|
Definition at line 1655 of file Containers_T.h. |
|
|||||
|
Declare the dynamic allocation hooks.
Definition at line 1692 of file Containers_T.h. |
|
|||||
|
Pointer to the current node in the iteration.
Definition at line 1697 of file Containers_T.h. Referenced by advance, done, ACE_Ordered_MultiSet::find, first, ACE_Ordered_MultiSet::insert, last, next, and retreat. |
|
|||||
|
Pointer to the set we're iterating over.
Definition at line 1700 of file Containers_T.h. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002