]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/IO360.hxx
Fixed calibrated airspeed output so that it accounts for wind.
[flightgear.git] / src / FDM / IO360.hxx
index ce459e02e6ecdfc811376707cdab459685a0a398..1f0df8d7ce7fd417d38d625930571cdc3a2d06e7 100644 (file)
@@ -30,9 +30,7 @@
 #include STL_IOSTREAM
 #include STL_FSTREAM
 
-#if !defined(SG_HAVE_NATIVE_SGI_COMPILERS)
 SG_USING_STD(ofstream);
-#endif
 
 class FGNewEngine {
 
@@ -158,16 +156,16 @@ private:
     float Calculate_Delta_T_Exhaust(void);
 
     // Calculate cylinder head temperature
-    void FGNewEngine::Calc_CHT(void);
+    void Calc_CHT(void);
 
     // Calculate exhaust gas temperature
-    void FGNewEngine::Calc_EGT(void);
+    void Calc_EGT(void);
 
     // Calculate fuel flow in gals/hr
-    void FGNewEngine::Calc_Fuel_Flow_Gals_Hr(void);
+    void Calc_Fuel_Flow_Gals_Hr(void);
 
     // Calculate current percentage power
-    void FGNewEngine::Calc_Percentage_Power(bool mag_left, bool mag_right);
+    void Calc_Percentage_Power(bool mag_left, bool mag_right);
 
     // Calculate Oil Temperature
     float Calc_Oil_Temp (float oil_temp);
@@ -176,7 +174,7 @@ private:
     float Calc_Oil_Press (float Oil_Temp, float Engine_RPM);
 
     // Propeller calculations.
-    void FGNewEngine::Do_Prop_Calcs(void);
+    void Do_Prop_Calcs(void);
 
 public: