1
0
Fork 0

April 25 updates to JSBsim by Jon.

This commit is contained in:
curt 2000-04-25 17:42:11 +00:00
parent ff8e6b9e28
commit 8f71890c08
4 changed files with 6 additions and 6 deletions

View file

@ -72,9 +72,9 @@ public:
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);
};

View file

@ -88,7 +88,7 @@ public:
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;}

View file

@ -39,7 +39,7 @@ HISTORY
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");

View file

@ -81,7 +81,7 @@ protected:
public:
FGFCSComponent(FGFCS*);
~FGFCSComponent ( ) { } //Destructor
virtual ~FGFCSComponent ( ) { } //Destructor
virtual bool Run (void);
virtual void SetOutput(void);