1
0
Fork 0
flightgear/src/Systems
ehofman d9bfd5a425 This should apply, and everything should build cleanly, in isolation from the
SimGear change. It changes all the SG_xxxx to be the 'real' includes, and gets
rid of many #ifdef SG_HAVE_STD_INCLUDES. As an added bonus, rather than
replacing 'SG_USING_NAMESPACE(std)' with 'using namespace std', I just fixed
the small number of places to use std:: explicitly. So we're no longer polluting
the global namespace with the entire contents of std, in many cases.

There is one more 'mechanical' change to come - getting rid of SG_USING_STD(X),
but I want to keep that separate from everything else. (There's another
mechnical change, replacing <math.h> with <cmath> and so on *everywhere*, but
one step at a time)
2008-07-25 18:38:29 +00:00
..
.cvsignore Forgot to update header. 2002-09-24 13:11:27 +00:00
electrical.cxx Include <iostream> and using declarations as needed. 2008-06-02 21:07:35 +00:00
electrical.hxx This should apply, and everything should build cleanly, in isolation from the 2008-07-25 18:38:29 +00:00
Makefile.am Move the submodels code from the Systems manager into it's own Subsystem manager. 2004-10-22 09:58:24 +00:00
pitot.cxx Roy Vegard Ovesen: 2006-12-06 22:11:43 +00:00
pitot.hxx This should apply, and everything should build cleanly, in isolation from the 2008-07-25 18:38:29 +00:00
README README for src/Systems/ 2003-01-29 16:03:00 +00:00
static.cxx John DENKER: 2007-03-31 09:36:19 +00:00
static.hxx John DENKER: 2007-03-31 09:36:19 +00:00
system_mgr.cxx Recent SimGear changes seem to require more additions of config.h to FG in order to compile on Cygwin 2006-02-22 21:04:47 +00:00
system_mgr.hxx Roy Vegard Ovesen: 2004-10-16 12:37:39 +00:00
vacuum.cxx - degrade electrical XML SG_ALERT to SG_WARN. The reason why this is output 2007-05-11 18:00:07 +00:00
vacuum.hxx Roy Vegard Ovesen: 2006-12-06 22:11:43 +00:00

src/Systems/ - support code for aircraft systems

This directory contains support code for major aircraft systems,
including the static, pitot, electrical, and vacuum systems.  The file
system_mgr.[ch]xx contains a subsystem group that holds all of the
individual systems.  Every system should extend FGSubsystem, and then
should be added to the group in the FGSystemMgr constructor.

Eventually, there will be an XML configuration file to select what
system modules should be available, so that different aircraft (i.e. a
twin plane with two vacuum systems) can have appropriate support.