#include <Map_T.h>
Inheritance diagram for ACE_Map_Impl_Reverse_Iterator_Adapter:


Public Types | |
| typedef IMPLEMENTATION | implementation |
Public Methods | |
| ACE_Map_Impl_Reverse_Iterator_Adapter (const IMPLEMENTATION &impl) | |
| Constructor. More... | |
| virtual | ~ACE_Map_Impl_Reverse_Iterator_Adapter (void) |
| Destructor. More... | |
| virtual ACE_Reverse_Iterator_Impl< T > * | clone (void) const |
| Clone. More... | |
| virtual int | compare (const ACE_Reverse_Iterator_Impl< T > &rhs) const |
| Comparison. More... | |
| virtual T | dereference (void) const |
| Dereference. More... | |
| virtual void | plus_plus (void) |
| Advance. More... | |
| virtual void | minus_minus (void) |
| Reverse. More... | |
| IMPLEMENTATION & | impl (void) |
| Accessor to implementation object. More... | |
Protected Attributes | |
| IMPLEMENTATION | implementation_ |
| All implementation details are forwarded to this class. More... | |
Implementation to be provided by IMPLEMENTATION.
Definition at line 493 of file Map_T.h.
|
|||||
|
|
|
||||||||||
|
Constructor.
Definition at line 290 of file Map_T.i.
00291 : implementation_ (impl) 00292 { 00293 } |
|
||||||||||
|
Destructor.
Definition at line 296 of file Map_T.i.
00297 {
00298 }
|
|
||||||||||
|
Clone.
Implements ACE_Reverse_Iterator_Impl. Definition at line 301 of file Map_T.i. References ACE_NEW_RETURN.
00302 {
00303 ACE_Reverse_Iterator_Impl<T> *temp = 0;
00304 ACE_NEW_RETURN (temp,
00305 (ACE_Map_Impl_Reverse_Iterator_Adapter<T, IMPLEMENTATION, ENTRY>) (*this),
00306 0);
00307 return temp;
00308 }
|
|
||||||||||
|
Comparison.
Implements ACE_Reverse_Iterator_Impl. Definition at line 312 of file Map_T.i. References implementation_.
00313 {
00314 const ACE_Map_Impl_Reverse_Iterator_Adapter<T, IMPLEMENTATION, ENTRY> &rhs_local
00315 = ACE_dynamic_cast_3_ref (const ACE_Map_Impl_Reverse_Iterator_Adapter, T, IMPLEMENTATION, ENTRY, rhs);
00316
00317 return this->implementation_ == rhs_local.implementation_;
00318 }
|
|
||||||||||
|
Dereference.
Implements ACE_Reverse_Iterator_Impl. Definition at line 321 of file Map_T.i. References implementation_.
00322 {
00323 ENTRY &entry = *this->implementation_;
00324 return T (entry.ext_id_,
00325 entry.int_id_);
00326 }
|
|
||||||||||
|
Accessor to implementation object.
Definition at line 341 of file Map_T.i. References implementation_.
00342 {
00343 return this->implementation_;
00344 }
|
|
||||||||||
|
Reverse.
Implements ACE_Reverse_Iterator_Impl. Definition at line 335 of file Map_T.i. References implementation_.
00336 {
00337 --this->implementation_;
00338 }
|
|
||||||||||
|
Advance.
Implements ACE_Reverse_Iterator_Impl. Definition at line 329 of file Map_T.i. References implementation_.
00330 {
00331 ++this->implementation_;
00332 }
|
|
|||||
|
All implementation details are forwarded to this class.
Definition at line 528 of file Map_T.h. Referenced by compare, dereference, impl, minus_minus, and plus_plus. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002