JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGFunctionValue Class Reference

Detailed Description

Represents a property value on which a function is applied.

Author
Bertrand Coconnier

Definition at line 57 of file FGFunctionValue.h.

#include <FGFunctionValue.h>

+ Inheritance diagram for FGFunctionValue:
+ Collaboration diagram for FGFunctionValue:

Public Member Functions

 FGFunctionValue (FGPropertyNode *propNode, FGTemplateFunc_ptr f)
 
 FGFunctionValue (std::string propName, std::shared_ptr< FGPropertyManager > propertyManager, FGTemplateFunc_ptr f, Element *el)
 
std::string GetFullyQualifiedName (void) const override
 
std::string GetName (void) const override
 
std::string GetNameWithSign (void) const override
 
std::string GetPrintableName (void) const override
 
double GetValue (void) const override
 
- Public Member Functions inherited from FGPropertyValue
 FGPropertyValue (const std::string &propName, std::shared_ptr< FGPropertyManager > propertyManager, Element *el)
 
 FGPropertyValue (FGPropertyNode *propNode)
 
std::string GetName (void) const override
 
double GetValue (void) const override
 
bool IsConstant (void) const override
 
bool IsLateBound (void) const
 
void SetNode (FGPropertyNode *node)
 
void SetValue (double value)
 
- Public Member Functions inherited from FGParameter
double getDoubleValue (void) const
 

Additional Inherited Members

- Protected Member Functions inherited from FGPropertyValue
FGPropertyNodeGetNode (void) const
 

Constructor & Destructor Documentation

◆ FGFunctionValue() [1/2]

FGFunctionValue ( FGPropertyNode propNode,
FGTemplateFunc_ptr  f 
)
inline

Definition at line 61 of file FGFunctionValue.h.

62 :FGPropertyValue(propNode), function(f) {}

◆ FGFunctionValue() [2/2]

FGFunctionValue ( std::string  propName,
std::shared_ptr< FGPropertyManager propertyManager,
FGTemplateFunc_ptr  f,
Element el 
)
inline

Definition at line 63 of file FGFunctionValue.h.

65 :FGPropertyValue(propName, propertyManager, el), function(f) {}

Member Function Documentation

◆ GetFullyQualifiedName()

std::string GetFullyQualifiedName ( void  ) const
inlineoverridevirtual

Reimplemented from FGPropertyValue.

Definition at line 78 of file FGFunctionValue.h.

78 {
79 return function->GetName() + "(" + FGPropertyValue::GetFullyQualifiedName() + ")";
80 }

◆ GetName()

std::string GetName ( void  ) const
inlineoverridevirtual

Implements FGParameter.

Definition at line 69 of file FGFunctionValue.h.

69 {
70 return function->GetName() + "(" + FGPropertyValue::GetName() + ")";
71 }

◆ GetNameWithSign()

std::string GetNameWithSign ( void  ) const
inlineoverridevirtual

Reimplemented from FGPropertyValue.

Definition at line 72 of file FGFunctionValue.h.

72 {
73 return function->GetName() + "(" + FGPropertyValue::GetNameWithSign() + ")";
74 }

◆ GetPrintableName()

std::string GetPrintableName ( void  ) const
inlineoverridevirtual

Reimplemented from FGPropertyValue.

Definition at line 75 of file FGFunctionValue.h.

75 {
76 return function->GetName() + "(" + FGPropertyValue::GetPrintableName() + ")";
77 }

◆ GetValue()

double GetValue ( void  ) const
inlineoverridevirtual

Implements FGParameter.

Definition at line 67 of file FGFunctionValue.h.

67{ return function->GetValue(GetNode()); }

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