A generic triple class. Inherits things like CopyConstructible or Assignable from its argument types.
| Name | Description |
|---|---|
| GeoTriple() | Constructors. |
| GeoTriple(const T1 &, const T2 &, const T3 &) | Constructors. |
| operator!=(const GeoTriple &) | Equality operators. |
| operator<(const GeoTriple &) | Comparison operator, required to use this class as a key in an STL-style container. |
| operator==(const GeoTriple &) | Equality operators. |
| Name | Description |
|---|---|
| T1 first | First value. |
| T2 second | Second value. |
| T3 third | Third value. |
public: GeoTriple()
Constructors.
public: GeoTriple
(
const T1 & t1,
const T2 & t2,
const T3 & t3
)
Constructors.
public: bool operator!=
(
const GeoTriple & rhs
) const
Equality operators.
public: bool operator<
(
const GeoTriple & rhs
) const
Comparison operator, required to use this class as a key in an STL-style container.
public: bool operator==
(
const GeoTriple & rhs
) const
Equality operators.