ACE_Reference_Pair< T1, T2 > Class Template Reference

Defines a pair that only hold references. More...

#include <Pair_T.h>

Collaboration diagram for ACE_Reference_Pair< T1, T2 >:

Collaboration graph
[legend]
List of all members.

Public Types

typedef T1 first_type
typedef T2 second_type

Public Member Functions

 ACE_Reference_Pair (T1 &t1, T2 &t2)
 Constructor.

T1 & first (void) const
 Access first.

T2 & second (void) const
 Access second.

bool operator== (const ACE_Reference_Pair< T1, T2 > &rhs) const

Protected Attributes

T1 & first_
 First.

T2 & second_
 Second.


Detailed Description

template<class T1, class T2>
class ACE_Reference_Pair< T1, T2 >

Defines a pair that only hold references.

Similar to the STL pair (but restricted to holding references and not copies).

Definition at line 84 of file Pair_T.h.


Member Typedef Documentation

template<class T1, class T2>
typedef T1 ACE_Reference_Pair< T1, T2 >::first_type
 

Definition at line 89 of file Pair_T.h.

template<class T1, class T2>
typedef T2 ACE_Reference_Pair< T1, T2 >::second_type
 

Definition at line 90 of file Pair_T.h.


Constructor & Destructor Documentation

template<class T1, class T2>
ACE_INLINE ACE_Reference_Pair< T1, T2 >::ACE_Reference_Pair T1 &  t1,
T2 &  t2
 

Constructor.

Definition at line 64 of file Pair_T.inl.

00066   : first_ (t1),
00067     second_ (t2)
00068 {
00069 }


Member Function Documentation

template<class T1, class T2>
ACE_INLINE T1 & ACE_Reference_Pair< T1, T2 >::first void   )  const
 

Access first.

Definition at line 72 of file Pair_T.inl.

00073 {
00074   return this->first_;
00075 }

template<class T1, class T2>
ACE_INLINE bool ACE_Reference_Pair< T1, T2 >::operator== const ACE_Reference_Pair< T1, T2 > &  rhs  )  const
 

Definition at line 84 of file Pair_T.inl.

References ACE_Reference_Pair< T1, T2 >::first_, and ACE_Reference_Pair< T1, T2 >::second_.

00085 {
00086   return (this->first_ == rhs.first_ &&
00087           this->second_ == rhs.second_);
00088 }

template<class T1, class T2>
ACE_INLINE T2 & ACE_Reference_Pair< T1, T2 >::second void   )  const
 

Access second.

Definition at line 78 of file Pair_T.inl.

00079 {
00080   return this->second_;
00081 }


Member Data Documentation

template<class T1, class T2>
T1& ACE_Reference_Pair< T1, T2 >::first_ [protected]
 

First.

Definition at line 108 of file Pair_T.h.

Referenced by ACE_Reference_Pair< T1, T2 >::operator==().

template<class T1, class T2>
T2& ACE_Reference_Pair< T1, T2 >::second_ [protected]
 

Second.

Definition at line 111 of file Pair_T.h.

Referenced by ACE_Reference_Pair< T1, T2 >::operator==().


The documentation for this class was generated from the following files:
Generated on Thu Nov 9 11:27:56 2006 for ACE by doxygen 1.3.6