]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/JSBSim/FGRotor.cpp
Expose the strut compression.
[flightgear.git] / src / FDM / JSBSim / FGRotor.cpp
index 3d0c7f3e04d2e08d235405d6d2fc1f79198aa937..b1efdde7653daa78d365c6e7a25747ef0b5e6501 100644 (file)
@@ -37,6 +37,8 @@ INCLUDES
 
 #include "FGRotor.h"
 
+namespace JSBSim {
+
 static const char *IdSrc = "$Id$";
 static const char *IdHdr = ID_ROTOR;
 
@@ -64,6 +66,20 @@ double FGRotor::Calculate(double PowerAvailable)
   return 0.0;
 }
 
+//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+string FGRotor::GetThrusterLabels(int id, string delimeter)
+{
+  return "";
+}
+
+//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
+
+string FGRotor::GetThrusterValues(int id, string delimeter)
+{
+  return "";
+}
+
 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 //    The bitmasked value choices are as follows:
 //    unset: In this case (the default) JSBSim would only print
@@ -109,4 +125,4 @@ void FGRotor::Debug(int from)
     }
   }
 }
-
+}