19 #ifndef __itkNodePair_h
20 #define __itkNodePair_h
32 template<
class TNode,
class TOutputPixel>
33 class NodePair :
private std::pair< TNode, TOutputPixel >
43 NodePair(
const TNode& iNode,
const TOutputPixel& iValue ) :
49 this->first = iPair.first;
50 this->second = iPair.second;
55 this->second = iValue;
80 return this->second < iRight.second;
85 return this->second > iRight.second;
90 return this->second <= iRight.second;
95 return this->second >= iRight.second;
100 #endif // __itkFastMarchingTraits_h