#include <Triplet.h>
Public Types | |
typedef T1 | first_type |
typedef T2 | second_type |
typedef T3 | third_type |
Public Member Functions | |
Triplet () | |
Triplet (const T1 &a, const T2 &b, const T3 &c) | |
template<class U1 , class U2 , class U3 > | |
Triplet (const Triplet< U1, U2, U3 > &p) | |
Public Attributes | |
T1 | first |
T2 | second |
T3 | third |
triplet is identical to stl::pair exceot that it has three members instead of two (first, second, third).
typedef T1 Triplet< T1, T2, T3 >::first_type |
typedef T2 Triplet< T1, T2, T3 >::second_type |
typedef T3 Triplet< T1, T2, T3 >::third_type |
|
inline |
|
inline |
T1 Triplet< T1, T2, T3 >::first |
Definition at line 14 of file Triplet.h.
Referenced by operator==().
T2 Triplet< T1, T2, T3 >::second |
Definition at line 15 of file Triplet.h.
Referenced by operator==().
T3 Triplet< T1, T2, T3 >::third |
Definition at line 16 of file Triplet.h.
Referenced by operator==().