]> git.mxchange.org Git - flightgear.git/blob - JSBsim/FGFCS.cpp
Initial revision.
[flightgear.git] / JSBsim / FGFCS.cpp
1 /*******************************************************************************
2
3  Module:       FGFCS.cpp
4  Author:       Jon Berndt
5  Date started: 12/12/98
6  Purpose:      Model the flight controls
7  Called by:    FDMExec
8
9  ------------- Copyright (C) 1999  Jon S. Berndt (jsb@hal-pc.org) -------------
10
11  This program is free software; you can redistribute it and/or modify it under
12  the terms of the GNU General Public License as published by the Free Software
13  Foundation; either version 2 of the License, or (at your option) any later
14  version.
15
16  This program is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18  FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19  details.
20
21  You should have received a copy of the GNU General Public License along with
22  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
23  Place - Suite 330, Boston, MA  02111-1307, USA.
24
25  Further information about the GNU General Public License can also be found on
26  the world wide web at http://www.gnu.org.
27
28 FUNCTIONAL DESCRIPTION
29 --------------------------------------------------------------------------------
30 This class models the flight controls for a specific airplane
31
32 ARGUMENTS
33 --------------------------------------------------------------------------------
34
35
36 HISTORY
37 --------------------------------------------------------------------------------
38 12/12/98   JSB   Created
39
40 ********************************************************************************
41 INCLUDES
42 *******************************************************************************/
43
44 #include "FGFCS.h"
45
46 /*******************************************************************************
47 ************************************ CODE **************************************
48 *******************************************************************************/
49
50
51 FGFCS::FGFCS(void) : FGModel()
52 {
53   strcpy(Name, "FGFCS");
54 }
55
56
57 FGFCS::~FGFCS(void)
58 {
59 }
60
61
62 bool FGFCS::Run(void)
63 {
64   if (!FGModel::Run()) {
65     
66   } else {
67   }
68   return false;
69 }