cgma
|
#include <TDInterpNode.hpp>
Public Member Functions | |
TDInterpNode (double val) | |
virtual | ~TDInterpNode () |
void | value (double val) |
double | value () |
void | weight (double wgt) |
double | weight () |
Static Public Member Functions | |
static int | is_interpnode (const ToolData *td) |
Private Attributes | |
double | mValue |
double | mWeight |
Definition at line 16 of file TDInterpNode.hpp.
TDInterpNode::TDInterpNode | ( | double | val | ) | [inline] |
Definition at line 25 of file TDInterpNode.hpp.
virtual TDInterpNode::~TDInterpNode | ( | ) | [inline, virtual] |
Definition at line 27 of file TDInterpNode.hpp.
{};
static int TDInterpNode::is_interpnode | ( | const ToolData * | td | ) | [inline, static] |
Definition at line 30 of file TDInterpNode.hpp.
{return (CAST_TO(td, const TDInterpNode) != NULL);}
void TDInterpNode::value | ( | double | val | ) | [inline] |
Definition at line 33 of file TDInterpNode.hpp.
{ mValue = val; }
double TDInterpNode::value | ( | ) | [inline] |
Definition at line 35 of file TDInterpNode.hpp.
{ return mValue; }
void TDInterpNode::weight | ( | double | wgt | ) | [inline] |
Definition at line 38 of file TDInterpNode.hpp.
{ mWeight = wgt; }
double TDInterpNode::weight | ( | ) | [inline] |
Definition at line 40 of file TDInterpNode.hpp.
{ return mWeight; }
double TDInterpNode::mValue [private] |
Definition at line 20 of file TDInterpNode.hpp.
double TDInterpNode::mWeight [private] |
Definition at line 21 of file TDInterpNode.hpp.