]> git.mxchange.org Git - flightgear.git/blobdiff - src/Systems/system_mgr.cxx
Added static port system and a new altimeter model connected to it.
[flightgear.git] / src / Systems / system_mgr.cxx
index b6ec4d44e108f6a857594a1512526dc0e058b16c..f30f88f711941eccea1f851d6c2e943e9ac58f60 100644 (file)
@@ -5,7 +5,9 @@
 
 
 #include "system_mgr.hxx"
-#include "Vacuum/vacuum.hxx"
+#include "electrical.hxx"
+#include "static.hxx"
+#include "vacuum.hxx"
 
 
 FGSystemMgr::FGSystemMgr ()
@@ -25,6 +27,8 @@ void
 FGSystemMgr::init ()
 {
                                 // TODO: replace with XML configuration
+    _systems.push_back(new FGElectricalSystem);
+    _systems.push_back(new StaticSystem);
     _systems.push_back(new VacuumSystem);
 
                                 // Initialize the individual systems