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
FGRealValue Class Reference

Detailed Description

Represents a real value.

Author
Jon Berndt

Definition at line 57 of file FGRealValue.h.

#include <FGRealValue.h>

+ Inheritance diagram for FGRealValue:
+ Collaboration diagram for FGRealValue:

Public Member Functions

 FGRealValue (double val)
 
std::string GetName (void) const override
 
double GetValue (void) const override
 
bool IsConstant (void) const override
 
- Public Member Functions inherited from FGParameter
double getDoubleValue (void) const
 

Constructor & Destructor Documentation

◆ FGRealValue()

FGRealValue ( double  val)
inlineexplicit

Definition at line 61 of file FGRealValue.h.

61: Value(val) {}

Member Function Documentation

◆ GetName()

std::string GetName ( void  ) const
overridevirtual

Implements FGParameter.

Definition at line 43 of file FGRealValue.cpp.

44{
45 return std::string("constant value ") + to_string(Value);
46}

◆ GetValue()

double GetValue ( void  ) const
inlineoverridevirtual

Implements FGParameter.

Definition at line 63 of file FGRealValue.h.

63{ return Value; };

◆ IsConstant()

bool IsConstant ( void  ) const
inlineoverridevirtual

Reimplemented from FGParameter.

Definition at line 65 of file FGRealValue.h.

65{ return true; }

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