]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/adf.hxx
Reintroduce an old bugture: use localizer as dme
[flightgear.git] / src / Instrumentation / adf.hxx
index 69831a6f22093777c7bcb98f9c58591cdf2fa225..5b1b1667d5a8cbd8e0a1007f5cbf6d76d47356e7 100644 (file)
 
 #include <string>
 
-#include <simgear/math/point3d.hxx>
 #include <simgear/props/props.hxx>
 
 #include <simgear/structure/subsystem_mgr.hxx>
-#include <Sound/morse.hxx>
 
-SG_USING_STD(string);
+using std::string;
 
 
+class SGSampleGroup;
+
 /**
  * Model an ADF radio.
  *
@@ -81,6 +81,7 @@ private:
     SGPropertyNode_ptr _ident_node;
     SGPropertyNode_ptr _ident_audible_node;
     SGPropertyNode_ptr _volume_node;
+    SGPropertyNode_ptr _power_btn_node;
 
     double _time_before_search_sec;
 
@@ -91,11 +92,12 @@ private:
     SGVec3d _transmitter_cart;
     double _transmitter_range_nm;
 
-    FGMorse morse;
     int _ident_count;
     time_t _last_ident_time;
-    double _last_volume;
+    float _last_volume;
     string _adf_ident;
+
+    SGSharedPtr<SGSampleGroup> _sgr;
 };