#include <Pair_T.h>
Collaboration diagram for ACE_Reference_Pair:

Public Types | |
| typedef T1 | first_type |
| typedef T2 | second_type |
Public Methods | |
| ACE_Reference_Pair (T1 &t1, T2 &t2) | |
| Constructor. More... | |
| T1 & | first (void) const |
| Access first. More... | |
| T2 & | second (void) const |
| Access second. More... | |
| int | operator== (const ACE_Reference_Pair< T1, T2 > &rhs) const |
Protected Attributes | |
| T1 & | first_ |
| First. More... | |
| T2 & | second_ |
| Second. More... | |
Similar to the STL pair (but restricted to holding references and not copies).
Definition at line 82 of file Pair_T.h.
|
|||||
|
|
|
|||||
|
|
|
||||||||||||||||
|
Constructor.
Definition at line 60 of file Pair_T.i.
|
|
||||||||||
|
Access first.
Definition at line 68 of file Pair_T.i. References first_.
00069 {
00070 return this->first_;
00071 }
|
|
||||||||||
|
Definition at line 80 of file Pair_T.i. References first_, and second_.
|
|
||||||||||
|
Access second.
Definition at line 74 of file Pair_T.i. References second_.
00075 {
00076 return this->second_;
00077 }
|
|
|||||
|
First.
Definition at line 106 of file Pair_T.h. Referenced by first, and operator==. |
|
|||||
|
Second.
Definition at line 109 of file Pair_T.h. Referenced by operator==, and second. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002