]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/instrument_mgr.cxx
Moved random ground cover object management code (userdata.[ch]xx) over
[flightgear.git] / src / Instrumentation / instrument_mgr.cxx
index 410245cb7499d14148c0617c66e42a1c335881ef..6a0ea21244c429ffb01e948960381a2fea05007d 100644 (file)
@@ -6,21 +6,32 @@
 
 #include "instrument_mgr.hxx"
 #include "airspeed_indicator.hxx"
+#include "annunciator.hxx"
 #include "attitude_indicator.hxx"
 #include "altimeter.hxx"
 #include "turn_indicator.hxx"
+#include "slip_skid_ball.hxx"
 #include "heading_indicator.hxx"
 #include "vertical_speed_indicator.hxx"
+#include "mag_compass.hxx"
+
+#include "dme.hxx"
+#include "gps.hxx"
 
 
 FGInstrumentMgr::FGInstrumentMgr ()
 {
     set_subsystem("asi", new AirspeedIndicator);
+    set_subsystem("annunciator", new Annunciator);
     set_subsystem("ai", new AttitudeIndicator);
     set_subsystem("alt", new Altimeter);
     set_subsystem("ti", new TurnIndicator);
+    set_subsystem("ball", new SlipSkidBall);
     set_subsystem("hi", new HeadingIndicator);
     set_subsystem("vsi", new VerticalSpeedIndicator);
+    set_subsystem("compass", new MagCompass);
+    set_subsystem("dme", new DME, 1.0);
+    set_subsystem("gps", new GPS, 0.45);
 }
 
 FGInstrumentMgr::~FGInstrumentMgr ()