X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FInstrumentation%2Finstrument_mgr.cxx;h=b9f4c359b845be2f1ba083e8d9b50f379b89c94c;hb=863b0c943251fae620406ec8983e5f69e1424731;hp=410245cb7499d14148c0617c66e42a1c335881ef;hpb=677c3e3e9ab9598c40a23cc89f99235d618b3a6f;p=flightgear.git diff --git a/src/Instrumentation/instrument_mgr.cxx b/src/Instrumentation/instrument_mgr.cxx index 410245cb7..b9f4c359b 100644 --- a/src/Instrumentation/instrument_mgr.cxx +++ b/src/Instrumentation/instrument_mgr.cxx @@ -6,21 +6,36 @@ #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 "adf.hxx" +#include "gps.hxx" +#include "clock.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("adf", new ADF, 0.15); + set_subsystem("gps", new GPS, 0.45); + set_subsystem("clock", new Clock, 0.25); } FGInstrumentMgr::~FGInstrumentMgr ()