![]() |
JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
|
Definition at line 375 of file FGPropertyManager.h.
Public Member Functions | |
FGPropertyManager (FGPropertyNode *_root) | |
Constructor. | |
FGPropertyManager (void) | |
Default constructor. | |
virtual | ~FGPropertyManager (void) |
Destructor. | |
FGPropertyNode * | GetNode (const std::string &path, bool create=false) |
FGPropertyNode * | GetNode (const std::string &relpath, int index, bool create=false) |
FGPropertyNode * | GetNode (void) const |
bool | HasNode (const std::string &path) const |
std::string | mkPropertyName (std::string name, bool lowercase) |
Property-ify a name replaces spaces with '-' and, optionally, makes name all lower case. | |
template<typename T > | |
void | Tie (const std::string &name, int index, T(*getter)(int), void(*setter)(int, T)=nullptr) |
Tie a property to a pair of indexed functions. | |
template<class T , class V > | |
void | Tie (const std::string &name, T *obj, int index, V(T::*getter)(int) const, void(T::*setter)(int, V)=nullptr) |
Tie a property to a pair of indexed object methods. | |
template<class T , class V > | |
void | Tie (const std::string &name, T *obj, V(T::*getter)() const, void(T::*setter)(V)=nullptr) |
Tie a property to a pair of object methods. | |
template<typename T > | |
void | Tie (const std::string &name, T *pointer) |
Tie a property to an external variable. | |
template<typename T > | |
void | Tie (const std::string &name, T(*getter)(), void(*setter)(T)=nullptr) |
Tie a property to a pair of simple functions. | |
template<typename T > | |
void | Unbind (const std::shared_ptr< T > &instance) |
Unbind all properties bound by this manager to an instance. | |
void | Unbind (const void *instance) |
Unbind all properties bound by this manager to an instance. | |
void | Unbind (void) |
Unbind all properties bound by this manager to an external data source. | |
void | Untie (const std::string &name) |
Untie a property from an external data source. | |
void | Untie (SGPropertyNode *property) |
Untie a property from an external data source. | |
|
inline |
Default constructor.
Definition at line 379 of file FGPropertyManager.h.
|
inlineexplicit |
|
inlinevirtual |
Destructor.
Definition at line 385 of file FGPropertyManager.h.
|
inline |
Definition at line 388 of file FGPropertyManager.h.
|
inline |
Definition at line 390 of file FGPropertyManager.h.
|
inline |
Definition at line 387 of file FGPropertyManager.h.
|
inline |
Definition at line 392 of file FGPropertyManager.h.
string mkPropertyName | ( | std::string | name, |
bool | lowercase | ||
) |
Property-ify a name replaces spaces with '-' and, optionally, makes name all lower case.
name | string to change |
lowercase | true to change all upper case chars to lower NOTE: this function changes its argument and thus relies on pass by value |
Definition at line 79 of file FGPropertyManager.cpp.
|
inline |
Tie a property to a pair of indexed functions.
Every time the property value is queried, the getter (if any) will be invoked with the index provided; every time the property value is modified, the setter (if any) will be invoked with the index provided. The getter can be 0 to make the property unreadable, and the setter can be 0 to make the property unmodifiable.
name | The property name to tie (full path). |
index | The integer argument to pass to the getter and setter functions. |
getter | The getter function, or 0 if the value is unreadable. |
setter | The setter function, or 0 if the value is unmodifiable. |
Definition at line 533 of file FGPropertyManager.h.
|
inline |
Tie a property to a pair of indexed object methods.
Every time the property value is queried, the getter (if any) will be invoked with the index provided; every time the property value is modified, the setter (if any) will be invoked with the index provided. The getter can be 0 to make the property unreadable, and the setter can be 0 to make the property unmodifiable.
name | The property name to tie (full path). |
obj | The object whose methods should be invoked. |
index | The integer argument to pass to the getter and setter methods. |
getter | The getter method, or 0 if the value is unreadable. |
setter | The setter method, or 0 if the value is unmodifiable. |
Definition at line 608 of file FGPropertyManager.h.
|
inline |
Tie a property to a pair of object methods.
Every time the property value is queried, the getter (if any) will be invoked; every time the property value is modified, the setter (if any) will be invoked. The getter can be 0 to make the property unreadable, and the setter can be 0 to make the property unmodifiable.
name | The property name to tie (full path). |
obj | The object whose methods should be invoked. |
getter | The object's getter method, or 0 if the value is unreadable. |
setter | The object's setter method, or 0 if the value is unmodifiable. |
Definition at line 571 of file FGPropertyManager.h.
|
inline |
Tie a property to an external variable.
The property's value will automatically mirror the variable's value, and vice-versa, until the property is untied.
name | The property name to tie (full path). |
pointer | A pointer to the variable. |
Definition at line 467 of file FGPropertyManager.h.
|
inline |
Tie a property to a pair of simple functions.
Every time the property value is queried, the getter (if any) will be invoked; every time the property value is modified, the setter (if any) will be invoked. The getter can be 0 to make the property unreadable, and the setter can be 0 to make the property unmodifiable.
name | The property name to tie (full path). |
getter | The getter function, or 0 if the value is unreadable. |
setter | The setter function, or 0 if the value is unmodifiable. |
Definition at line 498 of file FGPropertyManager.h.
|
inline |
Unbind all properties bound by this manager to an instance.
Classes should use this function to release control of any properties they have bound using this property manager. Helper function for shared_ptr
Definition at line 453 of file FGPropertyManager.h.
void Unbind | ( | const void * | instance | ) |
Unbind all properties bound by this manager to an instance.
Classes should use this function to release control of any properties they have bound using this property manager.
instance | The instance which properties shall be unbound. |
Definition at line 64 of file FGPropertyManager.cpp.
void Unbind | ( | void | ) |
Unbind all properties bound by this manager to an external data source.
Definition at line 54 of file FGPropertyManager.cpp.
void Untie | ( | const std::string & | name | ) |
Untie a property from an external data source.
Classes should use this function to release control of any properties they are managing.
name | The property name to untie (full path). |
Definition at line 303 of file FGPropertyManager.cpp.
void Untie | ( | SGPropertyNode * | property | ) |
Untie a property from an external data source.
Classes should use this function to release control of any properties they are managing.
property | A pointer to the property to untie. |
Definition at line 316 of file FGPropertyManager.cpp.