]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/JSBSim/FGFactorGroup.h
Updated to match changes in radiostack.[ch]xx
[flightgear.git] / src / FDM / JSBSim / FGFactorGroup.h
index 2b4b7ae433041d83c4a1e510122dfb242dd2b391..9a118c188fa6f6b26883144a793976292f55bea3 100644 (file)
@@ -95,31 +95,30 @@ CLASS DOCUMENTATION
 CLASS DECLARATION
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
 
-class FGFactorGroup: public FGCoefficient {
-  public:
-    FGFactorGroup(FGFDMExec* fdmex);
-    ~FGFactorGroup();
-    
-    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(); }
-    
-    void bind(FGPropertyManager* parent);
-    void unbind(void);
-  private:
-    FGFDMExec *FDMExec;
-    string name;
-    string description;
-    typedef vector<FGCoefficient*> CoeffArray;
-    CoeffArray sum;
-    double SDtotal;
-    double totalValue;
-    FGPropertyManager* node;
-    void Debug(int from);
+class FGFactorGroup: public FGCoefficient
+{
+public:
+  FGFactorGroup(FGFDMExec* fdmex);
+  ~FGFactorGroup();
+  
+  bool Load(FGConfigFile *AC_cfg);
+  double TotalValue(void);
+  inline double GetValue(void) const { return totalValue; }
+  inline double GetSD(void) { return SDtotal; }
+  inline double GetFactorSD(void) { return FGCoefficient::GetSD(); }
+  
+  void bind(FGPropertyManager* parent);
+  void unbind(void);
+
+private:
+  typedef vector<FGCoefficient*> CoeffArray;
+  CoeffArray sum;
+  double SDtotal;
+  double totalValue;
+  string description;
+  string name;
+  FGPropertyManager *node;
+  void Debug(int from);
 };
     
 #endif