X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2Ffdm_shell.hxx;h=3979067e1a247a657491bffd0722de2aeedf256f;hb=7dc8db8ef5b72daed46ebac8aee3423cfc48e91e;hp=04bbf1b722a1c409f3e8a5a25ae973d8304906f1;hpb=4a63946e94e1a1d6636c7076729af890633af2b0;p=flightgear.git diff --git a/src/FDM/fdm_shell.hxx b/src/FDM/fdm_shell.hxx index 04bbf1b72..3979067e1 100644 --- a/src/FDM/fdm_shell.hxx +++ b/src/FDM/fdm_shell.hxx @@ -41,7 +41,7 @@ class FDMShell : public SGSubsystem { public: FDMShell(); - ~FDMShell(); + virtual ~FDMShell(); virtual void init(); virtual void reinit(); @@ -50,7 +50,6 @@ public: virtual void unbind(); virtual void update(double dt); - SGSubsystem* getFDM(); private: @@ -58,8 +57,12 @@ private: TankPropertiesList _tankProperties; FGInterface* _impl; - SGPropertyNode* _props; // root property tree for this FDM instance + SGPropertyNode_ptr _props; // root property tree for this FDM instance bool _dataLogging; + + SGPropertyNode_ptr _wind_north, _wind_east,_wind_down; + SGPropertyNode_ptr _control_fdm_atmo,_temp_degc,_pressure_inhg; + SGPropertyNode_ptr _density_slugft, _data_logging, _replay_master; }; #endif // of FG_FDM_SHELL_HXX