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