1
0
Fork 0

Friday the 13th JSBSim update ... :-0 !!!

This commit is contained in:
curt 2000-10-14 02:10:10 +00:00
parent 5018278831
commit 972bf22630
89 changed files with 268 additions and 58 deletions

View file

@ -37,6 +37,9 @@ INCLUDES
#include "FGAerodynamics.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_AERODYNAMICS;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -55,6 +55,8 @@ INCLUDES
#include "FGModel.h"
#define ID_AERODYNAMICS "$Header$"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -128,8 +128,8 @@ INCLUDES
#include "FGAuxiliary.h"
#include "FGOutput.h"
const char *IdSrc = "$Header$";
const char *IdHdr = ID_AIRCRAFT;
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_AIRCRAFT;
/*******************************************************************************
************************************ CODE **************************************

View file

@ -133,6 +133,18 @@ DEFINITIONS
aerodynamic and mass properties, landing gear, etc.
@author Jon S. Berndt
@version $Id$
@see
[1] Cooke, Zyda, Pratt, and McGhee, "NPSNET: Flight Simulation Dynamic Modeling
Using Quaternions", Presence, Vol. 1, No. 4, pp. 404-420 Naval Postgraduate
School, January 1994
[2] D. M. Henderson, "Euler Angles, Quaternions, and Transformation Matrices",
JSC 12960, July 1977
[3] Richard E. McFarland, "A Standard Kinematic Model for Flight Simulation at
NASA-Ames", NASA CR-2497, January 1975
[4] Barnes W. McCormick, "Aerodynamics, Aeronautics, and Flight Mechanics",
Wiley & Sons, 1979 ISBN 0-471-03032-5
[5] Bernard Etkin, "Dynamics of Flight, Stability and Control", Wiley & Sons,
1982 ISBN 0-471-08936-2
*/
/*******************************************************************************
@ -150,6 +162,7 @@ public:
@param Executive a pointer to the parent executive object
*/
FGAircraft(FGFDMExec *Executive);
/// Destructor
~FGAircraft(void);
@ -158,6 +171,7 @@ public:
@return bool returns false if no error
*/
bool Run(void);
/** Loads the aircraft.
The executive calls this method to load the aircraft into JSBSim.
@param apath path to the aircraft files (e.g. "aircraft/X15/")
@ -166,7 +180,12 @@ public:
@return true if succesful
*/
bool LoadAircraft(string apath, string epath, string acname);
/** Retrieves the aircraft name
@return the name of the aircraft as a string type
*/
inline string GetAircraftName(void) { return AircraftName; }
inline void SetGearUp(bool tt) { GearUp = tt; }
inline bool GetGearUp(void) { return GearUp; }
inline int GetNumGearUnits(void) { return lGear.size(); }

View file

@ -59,6 +59,9 @@ INCLUDES
#include "FGDefs.h"
#include "FGMatrix.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_ATMOSPHERE;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -45,6 +45,8 @@ INCLUDES
#include "FGModel.h"
#include "FGMatrix.h"
#define ID_ATMOSPHERE "$Header$"
/*******************************************************************************
COMMENTS, REFERENCES, and NOTES
********************************************************************************

View file

@ -52,6 +52,9 @@ INCLUDES
#include "FGOutput.h"
#include "FGMatrix.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_AUXILIARY;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -42,6 +42,8 @@ INCLUDES
#include "FGModel.h"
#include "FGMatrix.h"
#define ID_AUXILIARY "$Header"
/*******************************************************************************
DEFINES
*******************************************************************************/

View file

@ -48,6 +48,9 @@ INCLUDES
#include "FGState.h"
#include "FGFDMExec.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = "ID_COEFFICIENT";
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -51,6 +51,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_COEFFICIENT "$Header"
/*******************************************************************************
FORWARD DECLARATIONS
*******************************************************************************/

View file

@ -21,6 +21,9 @@ INCLUDES
#include <stdlib.h>
#include <math.h>
static const char *IdSrc = "$Header$";
static const char *IdHdr = "ID_CONFIGFILE";
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -56,6 +56,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_CONFIGFILE "$Header"
using std::string;
using std::ifstream;

View file

@ -24,6 +24,8 @@
#include "FGControls.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = "ID_CONTROLS";
FGControls controls;
@ -51,10 +53,11 @@ FGControls::~FGControls() {
// $Log$
// Revision 1.18 2000/10/13 21:34:57 curt
// Panel tweaks to support "shaped" panels.
// Additional HUD support for waypoints.
// JSBSim updates.
// Revision 1.19 2000/10/14 00:10:12 curt
// Friday the 13th JSBSim update ... :-0 !!!
//
// Revision 1.4 2000/10/13 19:21:02 jsb
// ** JSB ** Added version identifiers for all files
//
// Revision 1.3 2000/04/26 10:55:57 jsb
// Made changes as required by Curt to install JSBSim into FGFS

View file

@ -25,11 +25,12 @@
#ifndef _CONTROLS_HXX
#define _CONTROLS_HXX
#ifndef __cplusplus
# error This library requires C++
#endif
#define ID_CONTROLS "$Header"
// Define a structure containing the control parameters
class FGControls {
@ -177,10 +178,11 @@ extern FGControls controls;
// $Log$
// Revision 1.17 2000/10/13 21:34:58 curt
// Panel tweaks to support "shaped" panels.
// Additional HUD support for waypoints.
// JSBSim updates.
// Revision 1.18 2000/10/14 00:10:12 curt
// Friday the 13th JSBSim update ... :-0 !!!
//
// Revision 1.7 2000/10/13 19:21:02 jsb
// ** JSB ** Added version identifiers for all files
//
// Revision 1.6 2000/06/03 13:59:52 jsb
// Changes for compatibility with MSVC

View file

@ -62,6 +62,9 @@ INCLUDES
#include "FGOutput.h"
#include "FGDefs.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = "ID_ENGINE";
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -56,6 +56,8 @@ FG_USING_STD(string);
DEFINES
*******************************************************************************/
#define ID_ENGINE "$Header"
using std::string;
/*******************************************************************************

View file

@ -56,6 +56,9 @@ INCLUDES
#include "filtersjb/FGSummer.h"
#include "filtersjb/FGFlaps.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = "ID_FCS";
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -54,6 +54,8 @@ INCLUDES
#include "FGModel.h"
#include "FGConfigFile.h"
#define ID_FCS "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -63,6 +63,9 @@ INCLUDES
#include "FGAuxiliary.h"
#include "FGOutput.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = "ID_FDMEXEC";
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -41,6 +41,8 @@ SENTRY
INCLUDES
*******************************************************************************/
#define ID_FDMEXEC "$Header"
#include "FGModel.h"
#include "FGInitialCondition.h"

View file

@ -47,6 +47,8 @@ and the cg.
#include "FGDefs.h"
#include "FGForce.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = "ID_FORCE";
FGForce::FGForce(FGFDMExec *FDMExec) :
vFn(3),

View file

@ -57,6 +57,8 @@ SENTRY
INCLUDES
*******************************************************************************/
#define ID_FORCE "$Header"
#include "FGFDMExec.h"
#include "FGMatrix.h"

View file

@ -37,6 +37,9 @@ INCLUDES
#include "FGGroundReactions.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_GROUNDREACTIONS;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -55,6 +55,8 @@ INCLUDES
#include "FGModel.h"
#define ID_GROUNDREACTIONS "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -37,6 +37,9 @@ INCLUDES
#include "FGInertial.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_INERTIAL;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -56,6 +56,8 @@ INCLUDES
#include "FGModel.h"
#include "FGConfigFile.h"
#define ID_INERTIAL "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -55,6 +55,9 @@ INCLUDES
#include "FGOutput.h"
#include "FGDefs.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_INITIALCONDITION;
FGInitialCondition::FGInitialCondition(FGFDMExec *FDMExec) {
vt=vc=ve=0;
mach=0;

View file

@ -53,6 +53,8 @@ INCLUDES
#include "FGAtmosphere.h"
#include "FGMatrix.h"
#define ID_INITIALCONDITION "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -39,6 +39,9 @@ INCLUDES
#include "FGLGear.h"
#include <algorithm>
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_LGEAR;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -68,6 +68,8 @@ INCLUDES
DEFINITIONS
*******************************************************************************/
#define ID_LGEAR "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -40,6 +40,9 @@ INCLUDES
#include "FGMassBalance.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_MASSBALANCE;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -44,6 +44,8 @@ INCLUDES
#include "FGModel.h"
#define ID_MASSBALANCE "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -20,6 +20,9 @@ INCLUDES
#include "FGMatrix.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_MATRIX;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -40,6 +40,8 @@ INCLUDES
#include <string>
#define ID_MATRIX "$Header"
/*******************************************************************************
FORWARD DECLARATIONS
*******************************************************************************/

View file

@ -50,6 +50,9 @@ INCLUDES
#include "FGAuxiliary.h"
#include "FGOutput.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_MODEL;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -53,6 +53,8 @@ INCLUDES
#include <string>
#define ID_MODEL "$Header$"
/*******************************************************************************
DEFINES
*******************************************************************************/

View file

@ -37,6 +37,9 @@ INCLUDES
#include "FGNozzle.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_NOZZLE;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -49,6 +49,9 @@ INCLUDES
#include "FGPosition.h"
#include "FGAuxiliary.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_OUTPUT;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -56,6 +56,8 @@ INCLUDES
#include "FGfdmSocket.h"
#define ID_OUTPUT "$Header$"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -40,6 +40,9 @@ INCLUDES
#include "FGPiston.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_PISTON;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -78,6 +78,9 @@ INCLUDES
#include "FGAuxiliary.h"
#include "FGOutput.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_POSITION;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -45,6 +45,17 @@ INCLUDES
#include "FGModel.h"
#include "FGMatrix.h"
#define ID_POSITION "$Header$"
/*******************************************************************************
DEFINITIONS
*******************************************************************************/
/** Models the lateral and longitudinal translational EOM.
@author Jon S. Berndt
@version $Id$
*/
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -37,6 +37,9 @@ INCLUDES
#include "FGPropeller.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_PROPELLER;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -44,6 +44,8 @@ INCLUDES
#include "FGThruster.h"
#define ID_PROPELLER "$Header$"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -58,6 +58,9 @@ INCLUDES
#include "FGPropulsion.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_PROPULSION;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -38,6 +38,8 @@ SENTRY
#ifndef FGPROPULSION_H
#define FGPROPULSION_H
#declare ID_PROPULSION "$Header$"
/*******************************************************************************
INCLUDES
*******************************************************************************/

View file

@ -40,6 +40,9 @@ INCLUDES
#include "FGRocket.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_ROCKET;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -44,6 +44,8 @@ INCLUDES
#include "FGEngine.h"
#define ID_ROCKET "$Header$"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -66,6 +66,9 @@ INCLUDES
#include "FGAuxiliary.h"
#include "FGOutput.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_ROTATION;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -75,6 +75,8 @@ INCLUDES
#include "FGModel.h"
#include "FGMatrix.h"
#define ID_ROTATION "$Header$"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -37,6 +37,9 @@ INCLUDES
#include "FGRotor.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_ROTOR;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -44,6 +44,8 @@ INCLUDES
#include "FGThruster.h"
#define ID_ROTOR "$Header$"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -63,6 +63,9 @@ INCLUDES
#include "FGAuxiliary.h"
#include "FGOutput.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_STATE;
/*******************************************************************************
MACROS
*******************************************************************************/

View file

@ -65,6 +65,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_STATE "$Header$"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -35,8 +35,12 @@ HISTORY
********************************************************************************
INCLUDES
*******************************************************************************/
#include "FGTank.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_TANK;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -55,6 +55,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_TANK "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -37,6 +37,9 @@ INCLUDES
#include "FGThruster.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_THRUSTER;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -44,6 +44,8 @@ INCLUDES
#include "FGForce.h"
#define ID_THRUSTER "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -68,6 +68,9 @@ INCLUDES
#include "FGAuxiliary.h"
#include "FGOutput.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_TRANSLATION;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -70,6 +70,8 @@ INCLUDES
#include "FGModel.h"
#include "FGMatrix.h"
#define ID_TRANSLATION "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -52,6 +52,9 @@ INCLUDES
#include "FGTrim.h"
#include "FGAircraft.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_TRIM;
/*******************************************************************************/
FGTrim::FGTrim(FGFDMExec *FDMExec,FGInitialCondition *FGIC, TrimMode tt ) {

View file

@ -65,6 +65,7 @@ INCLUDES
#include <vector.h>
#define ID_TRIM "$Header"
/*******************************************************************************
CLASS DECLARATION

View file

@ -28,9 +28,7 @@
--------------------------------------------------------------------------------
7/3/00 TP Created
*/
/*******************************************************************************
********************************************************************************
INCLUDES
*******************************************************************************/
@ -43,6 +41,9 @@ INCLUDES
#include "FGTrimAxis.h"
#include "FGAircraft.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_TRIMAXIS;
/*****************************************************************************/
FGTrimAxis::FGTrimAxis(FGFDMExec* fdex, FGInitialCondition* ic, Accel acc,

View file

@ -54,6 +54,7 @@ INCLUDES
#include "FGAuxiliary.h"
#include "FGOutput.h"
#define ID_TRIMAXIS "$Header"
const string AccelNames[6]= { "udot","vdot","wdot","qdot","pdot","rdot" };
const string ControlNames[13]= { "Throttle","Sideslip","Angle of Attack",

View file

@ -40,6 +40,9 @@ INCLUDES
#include "FGTurboJet.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_TURBOJET;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -44,6 +44,8 @@ INCLUDES
#include "FGEngine.h"
#define ID_TURBOJET "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -40,6 +40,9 @@ INCLUDES
#include "FGTurboShaft.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_TURBOSHAFT;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -44,6 +44,8 @@ INCLUDES
#include "FGEngine.h"
#define ID_TURBOSHAFT "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -57,6 +57,9 @@ INCLUDES
#include "FGState.h"
#include "FGFDMExec.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_UTILITY;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -42,6 +42,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_UTILITY "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -39,6 +39,9 @@ INCLUDES
#include "FGfdmSocket.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_FDMSOCKET;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -76,6 +76,8 @@ INCLUDES
DEFINITIONS
*******************************************************************************/
#define ID_FDMSOCKET "$Header"
using std::cout;
using std::endl;

View file

@ -115,6 +115,8 @@ USEUNIT("FGAerodynamics.cpp");
#include <ctime>
#endif
static const char *IdSrc = "$Header$";
int main(int argc, char** argv)
{
FGFDMExec* FDMExec;

View file

@ -1,9 +1,8 @@
/*******************************************************************************
Module: FGDeadBand.cpp
Author:
Date started:
Author: Jon S. Berndt
Date started: 11/1999
------------- Copyright (C) 2000 -------------
@ -40,6 +39,9 @@ INCLUDES
#include "FGDeadBand.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_DEADBAND;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -49,6 +49,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_DEADBAND "$Header"
class FGFCS;
/*******************************************************************************

View file

@ -1,8 +1,8 @@
/*******************************************************************************
Module: FGFCSComponent.cpp
Author:
Date started:
Author: Jon S. Berndt
Date started: 11/1999
------------- Copyright (C) 2000 -------------
@ -39,16 +39,13 @@ INCLUDES
#include "FGFCSComponent.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_FCSCOMPONENT;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/
// *****************************************************************************
// Function: Constructor
// Purpose:
// Parameters: void
// Comments:
FGFCSComponent::FGFCSComponent(FGFCS* _fcs) : fcs(_fcs)
{
Type = "";

View file

@ -53,6 +53,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_FCSCOMPONENT "$Header"
using std::string;
class FGFCS;

View file

@ -1,8 +1,8 @@
/*******************************************************************************
Module: FGFilter.cpp
Author:
Date started:
Author: Jon S. Berndt
Date started: 11/2000
------------- Copyright (C) 2000 -------------
@ -39,16 +39,13 @@ INCLUDES
#include "FGFilter.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_FILTER;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/
// *****************************************************************************
// Function: constructor
// Purpose:
// Parameters: void
// Comments:
FGFilter::FGFilter(FGFCS* fcs, FGConfigFile* AC_cfg) : FGFCSComponent(fcs),
AC_cfg(AC_cfg)
{

View file

@ -48,6 +48,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_FILTER "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -39,6 +39,9 @@ INCLUDES
#include "FGFlaps.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_FLAPS;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -61,6 +61,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_FLAPS "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -1,8 +1,8 @@
/*******************************************************************************
Module: FGGain.cpp
Author:
Date started:
Author: Jon S. Berndt
Date started: 4/2000
------------- Copyright (C) 2000 -------------
@ -39,6 +39,9 @@ INCLUDES
#include "FGGain.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_GAIN;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/

View file

@ -61,6 +61,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_GAIN "$Header"
class FGFCS;
/*******************************************************************************

View file

@ -1,4 +1,3 @@
/*******************************************************************************
Module: FGGradient.cpp
@ -40,16 +39,13 @@ INCLUDES
#include "FGGradient.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_GRADIENT;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/
// *****************************************************************************
// Function: Run
// Purpose:
// Parameters: void
// Comments:
FGGradient::FGGradient(FGFCS* fcs, FGConfigFile* AC_cfg) : FGFCSComponent(fcs),
AC_cfg(AC_cfg)
{

View file

@ -49,6 +49,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_GRADIENT "$Header"
class FGFCS;
/*******************************************************************************

View file

@ -1,8 +1,8 @@
/*******************************************************************************
Module: FGSummer.cpp
Author:
Date started:
Author: Jon S. Berndt
Date started: 4/2000
------------- Copyright (C) 2000 -------------
@ -39,16 +39,13 @@ INCLUDES
#include "FGSummer.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_SUMMER;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/
// *****************************************************************************
// Function: Constructor
// Purpose:
// Parameters: void
// Comments:
FGSummer::FGSummer(FGFCS* fcs, FGConfigFile* AC_cfg) : FGFCSComponent(fcs),
AC_cfg(AC_cfg)
{

View file

@ -61,6 +61,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_SUMMER "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/

View file

@ -2,8 +2,8 @@
/*******************************************************************************
Module: FGSwitch.cpp
Author:
Date started:
Author: Jon S. Berndt
Date started: 4/2000
------------- Copyright (C) 2000 -------------
@ -40,16 +40,13 @@ INCLUDES
#include "FGSwitch.h"
static const char *IdSrc = "$Header$";
static const char *IdHdr = ID_SWITCH;
/*******************************************************************************
************************************ CODE **************************************
*******************************************************************************/
// *****************************************************************************
// Function: constructor
// Purpose:
// Parameters: void
// Comments:
FGSwitch::FGSwitch(FGFCS* fcs, FGConfigFile* AC_cfg) : FGFCSComponent(fcs),
AC_cfg(AC_cfg)
{

View file

@ -49,6 +49,8 @@ INCLUDES
DEFINES
*******************************************************************************/
#define ID_SWITCH "$Header"
/*******************************************************************************
CLASS DECLARATION
*******************************************************************************/