]> git.mxchange.org Git - flightgear.git/blobdiff - src/Systems/system_mgr.hxx
Sync. w. JSBSim CVS
[flightgear.git] / src / Systems / system_mgr.hxx
index 544b1e30ac7f07f15bc289b60a655f467ba6f93c..e783532e22741083cb7cabab1aa679c460ba22fe 100644 (file)
 #endif
 
 #include <simgear/compiler.h>
-
-#include <Main/fgfs.hxx>
+#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 FGSubsystemGroup
+class FGSystemMgr : public SGSubsystemGroup
 {
 public:
 
     FGSystemMgr ();
     virtual ~FGSystemMgr ();
+    bool build ();
+
+private:
+    SGPropertyNode *config_props;
+    bool enabled;
+
 };
 
 #endif // __SYSTEM_MGR_HXX