X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FInstrumentation%2Finstrument_mgr.cxx;h=38504df7ae38249edd1dab01a8b48321d60ff143;hb=598db3d5281c75ac25b0e1566bb8e45ac10d061d;hp=8025a853079a0e2fe24fb81a8f6f4b97fd1ae602;hpb=8d5714084e76ab923c08aae431dbdb9e516aaf96;p=flightgear.git diff --git a/src/Instrumentation/instrument_mgr.cxx b/src/Instrumentation/instrument_mgr.cxx index 8025a8530..38504df7a 100644 --- a/src/Instrumentation/instrument_mgr.cxx +++ b/src/Instrumentation/instrument_mgr.cxx @@ -5,8 +5,11 @@ #include "instrument_mgr.hxx" +#include "airspeed_indicator.hxx" #include "altimeter.hxx" #include "attitude_indicator.hxx" +#include "heading_indicator.hxx" +#include "vertical_speed_indicator.hxx" FGInstrumentMgr::FGInstrumentMgr () @@ -26,8 +29,11 @@ void FGInstrumentMgr::init () { // TODO: replace with XML configuration + _instruments.push_back(new AirspeedIndicator); _instruments.push_back(new Altimeter); _instruments.push_back(new AttitudeIndicator); + _instruments.push_back(new HeadingIndicator); + _instruments.push_back(new VerticalSpeedIndicator); // Initialize the individual instruments for (unsigned int i = 0; i < _instruments.size(); i++)