1 // system_mgr.hxx - manage aircraft systems.
2 // Written by David Megginson, started 2002.
4 // This file is in the Public Domain and comes with no warranty.
7 #ifndef __SYSTEM_MGR_HXX
8 #define __SYSTEM_MGR_HXX 1
11 # error This library requires C++
18 #include <simgear/compiler.h>
19 #include <simgear/props/props.hxx>
20 #include <simgear/structure/subsystem_mgr.hxx>
24 * Manage aircraft systems.
26 * Multiple aircraft systems can be configured for each aircraft.
28 class FGSystemMgr : public SGSubsystemGroup
33 virtual ~FGSystemMgr ();
37 SGPropertyNode *config_props;
42 #endif // __SYSTEM_MGR_HXX