X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FInstrumentation%2Finstrument_mgr.cxx;h=38504df7ae38249edd1dab01a8b48321d60ff143;hb=598db3d5281c75ac25b0e1566bb8e45ac10d061d;hp=f330856e9d7cce7962086ac974bf17f89a678c50;hpb=682feb8f2d4803444b5a95d956de3979a7a7fcc7;p=flightgear.git diff --git a/src/Instrumentation/instrument_mgr.cxx b/src/Instrumentation/instrument_mgr.cxx index f330856e9..38504df7a 100644 --- a/src/Instrumentation/instrument_mgr.cxx +++ b/src/Instrumentation/instrument_mgr.cxx @@ -5,7 +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 () @@ -25,7 +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++)