#include <Pair_T.h>
Inheritance diagram for ACE_Pair< T1, T2 >:
Public Types | |
typedef T1 | first_type |
typedef T2 | second_type |
Public Methods | |
ACE_Pair (const T1 &t1, const T2 &t2) | |
Constructor. | |
ACE_Pair (void) | |
Default constructor. | |
T1 & | first (void) |
Get first. | |
const T1 & | first (void) const |
void | first (const T1 &t1) |
Set first. | |
T2 & | second (void) |
Get second. | |
const T2 & | second (void) const |
void | second (const T2 &t2) |
Set second. | |
int | operator== (const ACE_Pair< T1, T2 > &rhs) const |
Protected Attributes | |
T1 | first_ |
First. | |
T2 | second_ |
Second. |
Similar to the STL pair.
|
|
|
|
|
Constructor.
|
|
Default constructor.
|
|
Set first.
|
|
|
|
Get first.
|
|
|
|
Set second.
|
|
|
|
Get second.
|
|
First.
|
|
Second.
|