30#ifndef FGMODELFUNCTIONS_H
31#define FGMODELFUNCTIONS_H
40#include "input_output/FGPropertyReader.h"
50class FGPropertyManager;
77 void RunPreFunctions(
void);
78 void RunPostFunctions(
void);
98 std::shared_ptr<FGFunction>
GetPreFunction(
const std::string& name);
101 std::vector <std::shared_ptr<FGFunction>> PreFunctions;
102 std::vector <std::shared_ptr<FGFunction>> PostFunctions;
105 virtual bool InitModel(
void);
Encapsulates the JSBSim simulation executive.
The model functions class provides the capability for loading, storing, and executing arbitrary funct...
std::string GetFunctionStrings(const std::string &delimeter) const
Gets the strings for the current set of functions.
std::string GetFunctionValues(const std::string &delimeter) const
Gets the function values.
std::shared_ptr< FGFunction > GetPreFunction(const std::string &name)
Get one of the "pre" function.