Defines a iterator implementation for the Map_Manager_Adapter. More...
#include <Map_T.h>


Public Types | |
| typedef ACE_Map_Manager< KEY, VALUE, ACE_Null_Mutex > ::iterator | implementation |
Public Member Functions | |
| ACE_Map_Manager_Iterator_Adapter (const ACE_Map_Iterator< KEY, VALUE, ACE_Null_Mutex > &impl) | |
| Constructor. | |
| virtual | ~ACE_Map_Manager_Iterator_Adapter (void) |
| Destructor. | |
| virtual ACE_Iterator_Impl< T > * | clone (void) const |
| Clone. | |
| virtual int | compare (const ACE_Iterator_Impl< T > &rhs) const |
| Comparison. | |
| virtual T | dereference (void) const |
| Dereference. | |
| virtual void | plus_plus (void) |
| Advance. | |
| virtual void | minus_minus (void) |
| Reverse. | |
| ACE_Map_Iterator< KEY, VALUE, ACE_Null_Mutex > & | impl (void) |
| Accessor to implementation object. | |
Protected Attributes | |
| ACE_Map_Iterator< KEY, VALUE, ACE_Null_Mutex > | implementation_ |
| All implementation details are forwarded to this class. | |
Defines a iterator implementation for the Map_Manager_Adapter.
Implementation to be provided by ACE_Map_Manager::iterator.
Definition at line 1318 of file Map_T.h.
| typedef ACE_Map_Manager<KEY, VALUE, ACE_Null_Mutex>::iterator ACE_Map_Manager_Iterator_Adapter< T, KEY, VALUE >::implementation |
| ACE_Map_Manager_Iterator_Adapter< T, KEY, VALUE >::ACE_Map_Manager_Iterator_Adapter | ( | const ACE_Map_Iterator< KEY, VALUE, ACE_Null_Mutex > & | impl | ) | [inline] |
| ACE_Map_Manager_Iterator_Adapter< T, KEY, VALUE >::~ACE_Map_Manager_Iterator_Adapter | ( | void | ) | [virtual] |
| ACE_Iterator_Impl< T > * ACE_Map_Manager_Iterator_Adapter< T, KEY, VALUE >::clone | ( | void | ) | const [virtual] |
Clone.
Implements ACE_Iterator_Impl< T >.
Definition at line 1054 of file Map_T.cpp.
{
ACE_Iterator_Impl<T> *temp = 0;
ACE_NEW_RETURN (temp,
(ACE_Map_Manager_Iterator_Adapter<T, KEY, VALUE>) (*this),
0);
return temp;
}
| int ACE_Map_Manager_Iterator_Adapter< T, KEY, VALUE >::compare | ( | const ACE_Iterator_Impl< T > & | rhs | ) | const [virtual] |
Comparison.
Implements ACE_Iterator_Impl< T >.
Definition at line 1065 of file Map_T.cpp.
{
const ACE_Map_Manager_Iterator_Adapter<T, KEY, VALUE> &rhs_local
= dynamic_cast<const ACE_Map_Manager_Iterator_Adapter< T, KEY, VALUE> &> (rhs);
return this->implementation_ == rhs_local.implementation_;
}
| T ACE_Map_Manager_Iterator_Adapter< T, KEY, VALUE >::dereference | ( | void | ) | const [virtual] |
Dereference.
Implements ACE_Iterator_Impl< T >.
Definition at line 1074 of file Map_T.cpp.
{
// The following syntax is necessary to work around certain broken compilers.
// In particular, please do not prefix implementation_ with this->
return T ((*implementation_).ext_id_,
(*implementation_).int_id_);
}
| ACE_Map_Iterator< KEY, VALUE, ACE_Null_Mutex > & ACE_Map_Manager_Iterator_Adapter< T, KEY, VALUE >::impl | ( | void | ) | [inline] |
Accessor to implementation object.
Definition at line 372 of file Map_T.inl.
{
return this->implementation_;
}
| void ACE_Map_Manager_Iterator_Adapter< T, KEY, VALUE >::minus_minus | ( | void | ) | [virtual] |
Reverse.
Implements ACE_Iterator_Impl< T >.
Definition at line 1089 of file Map_T.cpp.
{
--this->implementation_;
}
| void ACE_Map_Manager_Iterator_Adapter< T, KEY, VALUE >::plus_plus | ( | void | ) | [virtual] |
Advance.
Implements ACE_Iterator_Impl< T >.
Definition at line 1083 of file Map_T.cpp.
{
++this->implementation_;
}
ACE_Map_Iterator<KEY, VALUE, ACE_Null_Mutex> ACE_Map_Manager_Iterator_Adapter< T, KEY, VALUE >::implementation_ [protected] |
1.7.0