X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2FJSBSim%2FFGFactorGroup.h;h=d4fb17de7332bef2d7f4e7c855908e2a95630237;hb=95440173caef3ce92ee7308fd58a24dabe4c5f8a;hp=5a6640cb1bebe76c000d2adef2c5f9c15743a667;hpb=4a854fcc3ec4e9508ec6d70d50fb1a92183cb04e;p=flightgear.git diff --git a/src/FDM/JSBSim/FGFactorGroup.h b/src/FDM/JSBSim/FGFactorGroup.h index 5a6640cb1..d4fb17de7 100644 --- a/src/FDM/JSBSim/FGFactorGroup.h +++ b/src/FDM/JSBSim/FGFactorGroup.h @@ -62,6 +62,8 @@ using std::vector; FORWARD DECLARATIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ +namespace JSBSim { + class FGFDMExec; class FGState; class FGAtmosphere; @@ -74,21 +76,12 @@ class FGAuxiliary; class FGOutput; /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -COMMENTS, REFERENCES, and NOTES [use "class documentation" below for API docs] -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% - - -%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CLASS DOCUMENTATION %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/ /** This class encapsulates the functionality needed to manage a factor group i.e. factor*(coeff1 + coeff2 + coeff3) @author Tony Peden - @see - Header File - @see - Source File */ /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% @@ -104,8 +97,6 @@ public: bool Load(FGConfigFile *AC_cfg); double TotalValue(void); inline double GetValue(void) const { return totalValue; } - //string GetCoefficientStrings(void); - //string GetCoefficientValues(void); inline double GetSD(void) { return SDtotal; } inline double GetFactorSD(void) { return FGCoefficient::GetSD(); } @@ -122,5 +113,5 @@ private: FGPropertyManager *node; void Debug(int from); }; - +} #endif