]> git.mxchange.org Git - flightgear.git/blobdiff - src/Systems/system_mgr.hxx
use http_proxy environment variable
[flightgear.git] / src / Systems / system_mgr.hxx
index 02c102a7e87e36c815bbcc92458e268e2ee364bd..a6260a531d921d3213c1cee94b63666ef16be58b 100644 (file)
 #endif
 
 #include <simgear/compiler.h>
+#include <simgear/props/props.hxx>
 #include <simgear/structure/subsystem_mgr.hxx>
 
 
 /**
  * Manage aircraft systems.
  *
- * In the initial draft, the systems present are hard-coded, but they
- * will soon be configurable for individual aircraft.
+ * Multiple aircraft systems can be configured for each aircraft.
  */
 class FGSystemMgr : public SGSubsystemGroup
 {
@@ -31,6 +31,11 @@ public:
 
     FGSystemMgr ();
     virtual ~FGSystemMgr ();
+    bool build (SGPropertyNode* config_props);
+
+private:
+    bool enabled;
+
 };
 
 #endif // __SYSTEM_MGR_HXX