30#ifndef FGPARAMETERVALUE_H
31#define FGPARAMETERVALUE_H
37#include "math/FGRealValue.h"
38#include "math/FGPropertyValue.h"
39#include "input_output/FGXMLElement.h"
40#include "input_output/string_utilities.h"
48class FGPropertyManager;
72 <<
"The element <" << el->
GetName()
73 <<
"> must either contain a value number or a property name."
79 FGParameterValue(
const std::string& value, std::shared_ptr<FGPropertyManager> pm,
82 param =
new FGRealValue(atof_locale_c(value.c_str()));
89 double GetValue(
void)
const override {
return param->GetValue(); }
90 bool IsConstant(
void)
const override {
return param->IsConstant(); }
92 std::string GetName(
void)
const override {
95 return v->GetNameWithSign();
97 return param->GetName();
100 bool IsLateBound(
void)
const {
102 return v !=
nullptr && v->IsLateBound();
105 FGParameter_ptr param;
108typedef SGSharedPtr<FGParameterValue> FGParameterValue_ptr;
const std::string & GetName(void) const
Retrieves the element name.
std::string GetDataLine(unsigned int i=0)
Gets a line of data belonging to an element.
unsigned int GetNumDataLines(void)
Returns the number of lines of data stored.
std::string ReadFrom(void) const
Return a string that contains a description of the location where the current XML element was read fr...
Represents a either a real value or a property value.
Represents various types of parameters.
Represents a property value which can use late binding.