X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FInstrumentation%2Finstrument_mgr.cxx;h=38504df7ae38249edd1dab01a8b48321d60ff143;hb=598db3d5281c75ac25b0e1566bb8e45ac10d061d;hp=765c487158852c8ba9cbf1d1d3b1547ab5a8d807;hpb=5289055776b645f25234f1f1f012727baa31e863;p=flightgear.git diff --git a/src/Instrumentation/instrument_mgr.cxx b/src/Instrumentation/instrument_mgr.cxx index 765c48715..38504df7a 100644 --- a/src/Instrumentation/instrument_mgr.cxx +++ b/src/Instrumentation/instrument_mgr.cxx @@ -5,6 +5,7 @@ #include "instrument_mgr.hxx" +#include "airspeed_indicator.hxx" #include "altimeter.hxx" #include "attitude_indicator.hxx" #include "heading_indicator.hxx" @@ -28,6 +29,7 @@ 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);