#include <Map_T.h>
Inheritance diagram for ACE_Map_Manager_Reverse_Iterator_Adapter< T, KEY, VALUE >:
Public Types | |
typedef ACE_TYPENAME ACE_Map_Manager< KEY, VALUE, ACE_Null_Mutex >::reverse_iterator | implementation |
Public Member Functions | |
ACE_Map_Manager_Reverse_Iterator_Adapter (const ACE_Map_Reverse_Iterator< KEY, VALUE, ACE_Null_Mutex > &impl) | |
Constructor. | |
virtual | ~ACE_Map_Manager_Reverse_Iterator_Adapter (void) |
Destructor. | |
virtual ACE_Reverse_Iterator_Impl< T > * | clone (void) const |
Clone. | |
virtual int | compare (const ACE_Reverse_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_Reverse_Iterator< KEY, VALUE, ACE_Null_Mutex > & | impl (void) |
Accessor to implementation object. | |
Protected Attributes | |
ACE_Map_Reverse_Iterator< KEY, VALUE, ACE_Null_Mutex > | implementation_ |
All implementation details are forwarded to this class. |
Implementation to be provided by ACE_Map_Manager::reverse_iterator.
Definition at line 1364 of file Map_T.h.
|
|
|
Constructor.
Definition at line 378 of file Map_T.inl.
00379 : implementation_ (impl) 00380 { 00381 } |
|
Destructor.
Definition at line 1095 of file Map_T.cpp.
01096 { 01097 } |
|
Clone.
Implements ACE_Reverse_Iterator_Impl< T >. Definition at line 1100 of file Map_T.cpp. References ACE_NEW_RETURN.
01101 { 01102 ACE_Reverse_Iterator_Impl<T> *temp = 0; 01103 ACE_NEW_RETURN (temp, 01104 (ACE_Map_Manager_Reverse_Iterator_Adapter<T, KEY, VALUE>) (*this), 01105 0); 01106 return temp; 01107 } |
|
Comparison.
Implements ACE_Reverse_Iterator_Impl< T >. Definition at line 1111 of file Map_T.cpp. References ACE_Map_Manager_Reverse_Iterator_Adapter< T, KEY, VALUE >::implementation_.
01112 { 01113 const ACE_Map_Manager_Reverse_Iterator_Adapter<T, KEY, VALUE> &rhs_local 01114 = dynamic_cast<const ACE_Map_Manager_Reverse_Iterator_Adapter< T, KEY, VALUE> &> (rhs); 01115 01116 return this->implementation_ == rhs_local.implementation_; 01117 } |
|
Dereference.
Implements ACE_Reverse_Iterator_Impl< T >. Definition at line 1120 of file Map_T.cpp.
01121 { 01122 // The following syntax is necessary to work around certain broken compilers. 01123 // In particular, please do not prefix implementation_ with this-> 01124 return T ((*implementation_).ext_id_, 01125 (*implementation_).int_id_); 01126 } |
|
Accessor to implementation object.
Definition at line 384 of file Map_T.inl.
00385 { 00386 return this->implementation_; 00387 } |
|
Reverse.
Implements ACE_Reverse_Iterator_Impl< T >. Definition at line 1135 of file Map_T.cpp.
01136 { 01137 --this->implementation_; 01138 } |
|
Advance.
Implements ACE_Reverse_Iterator_Impl< T >. Definition at line 1129 of file Map_T.cpp.
01130 { 01131 ++this->implementation_; 01132 } |
|
All implementation details are forwarded to this class.
Definition at line 1399 of file Map_T.h. Referenced by ACE_Map_Manager_Reverse_Iterator_Adapter< T, KEY, VALUE >::compare(). |