Field3D
Curve< T >::CheckTGreaterThan Struct Reference

Used when finding values in the m_samples vector. More...

List of all members.

Public Member Functions

 CheckTGreaterThan (float match)
bool operator() (std::pair< float, T > test)

Private Attributes

float m_match

Detailed Description

template<typename T>
struct Curve< T >::CheckTGreaterThan

Used when finding values in the m_samples vector.

Definition at line 115 of file Curve.h.


Constructor & Destructor Documentation

template<typename T>
Curve< T >::CheckTGreaterThan::CheckTGreaterThan ( float  match) [inline]

Definition at line 118 of file Curve.h.

      : m_match(match)
    { }

Member Function Documentation

template<typename T>
bool Curve< T >::CheckTGreaterThan::operator() ( std::pair< float, T >  test) [inline]

Definition at line 121 of file Curve.h.

References Curve< T >::CheckTGreaterThan::m_match.

    {
      return test.first > m_match;
    }

Member Data Documentation

template<typename T>
float Curve< T >::CheckTGreaterThan::m_match [private]

Definition at line 126 of file Curve.h.

Referenced by Curve< T >::CheckTGreaterThan::operator()().


The documentation for this struct was generated from the following file: