769 : cached(false), cachedValue(-HUGE_VAL), pNode(nullptr), pCopyTo(nullptr) {}
771 explicit FGFunction(std::shared_ptr<FGPropertyManager> pm)
773 { PropertyManager = pm; }
792 FGFunction(FGFDMExec* fdmex, Element* element,
const std::string& prefix=
"",
793 FGPropertyValue* var=0L);
802 double GetValue(
void)
const override;
809 std::string
GetName(
void)
const override {
return Name;}
825 enum class OddEven {Either, Odd, Even};
830 std::vector <FGParameter_ptr> Parameters;
831 std::shared_ptr<FGPropertyManager> PropertyManager;
832 FGPropertyNode_ptr pNode;
834 void Load(Element* element, FGPropertyValue* var, FGFDMExec* fdmex,
835 const std::string& prefix=
"");
836 virtual void bind(Element*,
const std::string&);
837 void CheckMinArguments(Element* el,
unsigned int _min);
838 void CheckMaxArguments(Element* el,
unsigned int _max);
839 void CheckOddOrEvenArguments(Element* el, OddEven odd_even);
840 std::string CreateOutputNode(Element* el,
const std::string& Prefix);
844 FGPropertyNode_ptr pCopyTo;
846 void Debug(
int from);