inline FGColumnVector GetVel(void) {return vVel;}
inline FGColumnVector GetUVW(void) {return vUVW;}
- inline FGColumnVector GetVn(void) {return vVel(1);}
- inline FGColumnVector GetVe(void) {return vVel(2);}
- inline FGColumnVector GetVd(void) {return vVel(3);}
+ inline float GetVn(void) {return vVel(1);}
+ inline float GetVe(void) {return vVel(2);}
+ inline float GetVd(void) {return vVel(3);}
bool Run(void);
};
inline float Getbeta (void) {return beta; }
inline float Getgamma(void) {return gamma;}
- inline void SetUVW(FGColumnVector tt) {vUVW = tt;}
+ void SetUVW(FGColumnVector tt) {vUVW = tt;}
inline void Setalpha(float tt) {alpha = tt;}
inline void Setbeta (float tt) {beta = tt;}
INCLUDES
*******************************************************************************/
-#if __BCPLUSPLUS__ >= 0x0540 // If compiling under Borland C++Builder
+#if __BCPLUSPLUS__ == 0x0540 // If compiling under Borland C++Builder
#pragma hdrstop
#include <condefs.h>
USEUNIT("FGUtility.cpp");
public:
FGFCSComponent(FGFCS*);
- ~FGFCSComponent ( ) { } //Destructor
+ virtual ~FGFCSComponent ( ) { } //Destructor
virtual bool Run (void);
virtual void SetOutput(void);