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


Public Types | |
| typedef ACE_TYPENAME ACE_Active_Map_Manager< VALUE >::reverse_iterator | implementation |
Public Methods | |
| ACE_Active_Map_Manager_Reverse_Iterator_Adapter (const ACE_Map_Reverse_Iterator< ACE_Active_Map_Manager_Key, VALUE, ACE_Null_Mutex > &impl) | |
| Constructor. More... | |
| virtual | ~ACE_Active_Map_Manager_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... | |
| ACE_Map_Reverse_Iterator< ACE_Active_Map_Manager_Key, VALUE, ACE_Null_Mutex > & | impl (void) |
| Accessor to implementation object. More... | |
Protected Attributes | |
| ACE_Map_Reverse_Iterator< ACE_Active_Map_Manager_Key, VALUE, ACE_Null_Mutex > | implementation_ |
| All implementation details are forwarded to this class. More... | |
Implementation to be provided by ACE_Active_Map_Manager::reverse_iterator.
Definition at line 774 of file Map_T.h.
|
|||||
|
|
|
||||||||||
|
Constructor.
Definition at line 612 of file Map_T.i.
00613 : implementation_ (impl) 00614 { 00615 } |
|
||||||||||
|
Destructor.
Definition at line 618 of file Map_T.i.
00619 {
00620 }
|
|
||||||||||
|
Clone.
Implements ACE_Reverse_Iterator_Impl. Definition at line 623 of file Map_T.i. References ACE_NEW_RETURN.
00624 {
00625 ACE_Reverse_Iterator_Impl<T> *temp = 0;
00626 ACE_NEW_RETURN (temp,
00627 (ACE_Active_Map_Manager_Reverse_Iterator_Adapter<T, VALUE>) (*this),
00628 0);
00629 return temp;
00630 }
|
|
||||||||||
|
Comparison.
Implements ACE_Reverse_Iterator_Impl. Definition at line 634 of file Map_T.i. References implementation_.
00635 {
00636 const ACE_Active_Map_Manager_Reverse_Iterator_Adapter<T, VALUE> &rhs_local
00637 = ACE_dynamic_cast_2_ref (const ACE_Active_Map_Manager_Reverse_Iterator_Adapter, T, VALUE, rhs);
00638
00639 return this->implementation_ == rhs_local.implementation_;
00640 }
|
|
||||||||||
|
Dereference.
Implements ACE_Reverse_Iterator_Impl. Definition at line 643 of file Map_T.i.
00644 {
00645 // The following syntax is necessary to work around certain broken compilers.
00646 // In particular, please do not prefix implementation_ with this->
00647 return T ((*implementation_).int_id_.first (),
00648 (*implementation_).int_id_.second ());
00649 }
|
|
||||||||||
|
Accessor to implementation object.
Definition at line 664 of file Map_T.i. References implementation_.
00665 {
00666 return this->implementation_;
00667 }
|
|
||||||||||
|
Reverse.
Implements ACE_Reverse_Iterator_Impl. Definition at line 658 of file Map_T.i. References implementation_.
00659 {
00660 --this->implementation_;
00661 }
|
|
||||||||||
|
Advance.
Implements ACE_Reverse_Iterator_Impl. Definition at line 652 of file Map_T.i. References implementation_.
00653 {
00654 ++this->implementation_;
00655 }
|
|
|||||
|
All implementation details are forwarded to this class.
Definition at line 809 of file Map_T.h. Referenced by compare, impl, minus_minus, and plus_plus. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002