1
0
Fork 0
flightgear/src/Systems
2012-05-05 01:08:20 +02:00
..
CMakeLists.txt More CMake headers support 2011-07-19 07:58:03 +01:00
electrical.cxx Ganael Laplanche: fix include dependencies for FreeBSD support 2012-05-05 01:08:20 +02:00
electrical.hxx eliminate some SGPropertyNode_ptr variables in classes 2010-01-26 17:19:17 +01:00
pitot.cxx Compile with MSVC 9 2012-03-25 14:39:24 +02:00
pitot.hxx Fix (nearly) all the std:: namespace violations in headers, in preparation for fixing SGsmplstat.hxx to *not* do a 'using namespace std'. 2011-10-17 17:41:59 +01:00
README README for src/Systems/ 2003-01-29 16:03:00 +00:00
static.cxx Fix MSVC9 build 2011-11-14 08:38:58 +01:00
static.hxx Fix (nearly) all the std:: namespace violations in headers, in preparation for fixing SGsmplstat.hxx to *not* do a 'using namespace std'. 2011-10-17 17:41:59 +01:00
system_mgr.cxx Ganael Laplanche: fix include dependencies for FreeBSD support 2012-05-05 01:08:20 +02:00
system_mgr.hxx eliminate some SGPropertyNode_ptr variables in classes 2010-01-26 17:19:17 +01:00
vacuum.cxx Fix (nearly) all the std:: namespace violations in headers, in preparation for fixing SGsmplstat.hxx to *not* do a 'using namespace std'. 2011-10-17 17:41:59 +01:00
vacuum.hxx Fix (nearly) all the std:: namespace violations in headers, in preparation for fixing SGsmplstat.hxx to *not* do a 'using namespace std'. 2011-10-17 17:41:59 +01: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.