Public Types | Public Member Functions | Protected Attributes

ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE > Class Template Reference

Defines a reverse iterator implementation for the Active_Map_Manager_Adapter. More...

#include <Map_T.h>

Inheritance diagram for ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE >:
Inheritance graph
[legend]
Collaboration diagram for ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE >:
Collaboration graph
[legend]

List of all members.

Public Types

typedef ACE_Active_Map_Manager
< VALUE >::reverse_iterator 
implementation

Public Member Functions

 ACE_Active_Map_Manager_Reverse_Iterator_Adapter (const ACE_Map_Reverse_Iterator< ACE_Active_Map_Manager_Key, VALUE, ACE_Null_Mutex > &impl)
 Constructor.
virtual ~ACE_Active_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
< ACE_Active_Map_Manager_Key,
VALUE, ACE_Null_Mutex > & 
impl (void)
 Accessor to implementation object.

Protected Attributes

ACE_Map_Reverse_Iterator
< ACE_Active_Map_Manager_Key,
VALUE, ACE_Null_Mutex
implementation_
 All implementation details are forwarded to this class.

Detailed Description

template<class T, class VALUE>
class ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE >

Defines a reverse iterator implementation for the Active_Map_Manager_Adapter.

Implementation to be provided by ACE_Active_Map_Manager::reverse_iterator.

Definition at line 782 of file Map_T.h.


Member Typedef Documentation

template<class T, class VALUE>
typedef ACE_Active_Map_Manager<VALUE>::reverse_iterator ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE >::implementation

Definition at line 788 of file Map_T.h.


Constructor & Destructor Documentation

Constructor.

Definition at line 278 of file Map_T.inl.

  : implementation_ (impl)
{
}

template<class T , class VALUE >
ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE >::~ACE_Active_Map_Manager_Reverse_Iterator_Adapter ( void   )  [virtual]

Destructor.

Definition at line 360 of file Map_T.cpp.

{
}


Member Function Documentation

template<class T , class VALUE >
ACE_Reverse_Iterator_Impl< T > * ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE >::clone ( void   )  const [virtual]

Clone.

Implements ACE_Reverse_Iterator_Impl< T >.

Definition at line 365 of file Map_T.cpp.

template<class T , class VALUE >
int ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE >::compare ( const ACE_Reverse_Iterator_Impl< T > &  rhs  )  const [virtual]

Comparison.

Implements ACE_Reverse_Iterator_Impl< T >.

Definition at line 376 of file Map_T.cpp.

template<class T , class VALUE >
T ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE >::dereference ( void   )  const [virtual]

Dereference.

Implements ACE_Reverse_Iterator_Impl< T >.

Definition at line 385 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_).int_id_.first (),
            (*implementation_).int_id_.second ());
}

template<class T , class VALUE >
ACE_Map_Reverse_Iterator< ACE_Active_Map_Manager_Key, VALUE, ACE_Null_Mutex > & ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE >::impl ( void   )  [inline]

Accessor to implementation object.

Definition at line 284 of file Map_T.inl.

{
  return this->implementation_;
}

template<class T , class VALUE >
void ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE >::minus_minus ( void   )  [virtual]

Reverse.

Implements ACE_Reverse_Iterator_Impl< T >.

Definition at line 400 of file Map_T.cpp.

{
  --this->implementation_;
}

template<class T , class VALUE >
void ACE_Active_Map_Manager_Reverse_Iterator_Adapter< T, VALUE >::plus_plus ( void   )  [virtual]

Advance.

Implements ACE_Reverse_Iterator_Impl< T >.

Definition at line 394 of file Map_T.cpp.

{
  ++this->implementation_;
}


Member Data Documentation

All implementation details are forwarded to this class.

Definition at line 817 of file Map_T.h.


The documentation for this class was generated from the following files:
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines