#include <Map_T.h>
Inheritance diagram for ACE_Map_Impl_Reverse_Iterator_Adapter< T, IMPLEMENTATION, ENTRY >:


Public Types | |
| typedef IMPLEMENTATION | implementation |
Public Member Functions | |
| ACE_Map_Impl_Reverse_Iterator_Adapter (const IMPLEMENTATION &impl) | |
| Constructor. | |
| virtual | ~ACE_Map_Impl_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. | |
| IMPLEMENTATION & | impl (void) |
| Accessor to implementation object. | |
Protected Attributes | |
| IMPLEMENTATION | implementation_ |
| All implementation details are forwarded to this class. | |
Implementation to be provided by IMPLEMENTATION.
Definition at line 501 of file Map_T.h.
|
|||||
|
|
|
||||||||||
|
Constructor.
Definition at line 234 of file Map_T.inl.
00235 : implementation_ (impl) 00236 { 00237 } |
|
||||||||||
|
Destructor.
Definition at line 79 of file Map_T.cpp.
00080 {
00081 }
|
|
||||||||||
|
Clone.
Implements ACE_Reverse_Iterator_Impl< T >. Definition at line 84 of file Map_T.cpp. References ACE_NEW_RETURN.
00085 {
00086 ACE_Reverse_Iterator_Impl<T> *temp = 0;
00087 ACE_NEW_RETURN (temp,
00088 (ACE_Map_Impl_Reverse_Iterator_Adapter<T, IMPLEMENTATION, ENTRY>) (*this),
00089 0);
00090 return temp;
00091 }
|
|
||||||||||
|
Comparison.
Implements ACE_Reverse_Iterator_Impl< T >. Definition at line 95 of file Map_T.cpp. References ACE_Map_Impl_Reverse_Iterator_Adapter< T, IMPLEMENTATION, ENTRY >::implementation_.
00096 {
00097 const ACE_Map_Impl_Reverse_Iterator_Adapter<T, IMPLEMENTATION, ENTRY> &rhs_local
00098 = dynamic_cast<const ACE_Map_Impl_Reverse_Iterator_Adapter< T, IMPLEMENTATION, ENTRY> &> (rhs);
00099
00100 return this->implementation_ == rhs_local.implementation_;
00101 }
|
|
||||||||||
|
Dereference.
Implements ACE_Reverse_Iterator_Impl< T >. Definition at line 104 of file Map_T.cpp.
00105 {
00106 ENTRY &entry = *this->implementation_;
00107 return T (entry.ext_id_,
00108 entry.int_id_);
00109 }
|
|
||||||||||
|
Accessor to implementation object.
Definition at line 240 of file Map_T.inl.
00241 {
00242 return this->implementation_;
00243 }
|
|
||||||||||
|
Reverse.
Implements ACE_Reverse_Iterator_Impl< T >. Definition at line 118 of file Map_T.cpp.
00119 {
00120 --this->implementation_;
00121 }
|
|
||||||||||
|
Advance.
Implements ACE_Reverse_Iterator_Impl< T >. Definition at line 112 of file Map_T.cpp.
00113 {
00114 ++this->implementation_;
00115 }
|
|
|||||
|
All implementation details are forwarded to this class.
Definition at line 536 of file Map_T.h. Referenced by ACE_Map_Impl_Reverse_Iterator_Adapter< T, IMPLEMENTATION, ENTRY >::compare(). |
1.3.6