]> git.mxchange.org Git - flightgear.git/blobdiff - src/Instrumentation/adf.hxx
httpd: better handling of first-time notifications
[flightgear.git] / src / Instrumentation / adf.hxx
index 5b1b1667d5a8cbd8e0a1007f5cbf6d76d47356e7..2ac32fa9d10effff6a818382c77806c225e7e854 100644 (file)
@@ -16,9 +16,7 @@
 #include <simgear/props/props.hxx>
 
 #include <simgear/structure/subsystem_mgr.hxx>
-
-using std::string;
-
+#include <simgear/math/SGMath.hxx>
 
 class SGSampleGroup;
 
@@ -60,15 +58,11 @@ private:
 
     void set_bearing (double delta_time_sec, double bearing);
 
-    void search (double frequency, double longitude_rad,
-                 double latitude_rad, double altitude_m);
+    void search (double frequency, const SGGeod& pos);
 
-    string _name;
+    std::string _name;
     unsigned int _num;
 
-    SGPropertyNode_ptr _longitude_node;
-    SGPropertyNode_ptr _latitude_node;
-    SGPropertyNode_ptr _altitude_node;
     SGPropertyNode_ptr _heading_node;
     SGPropertyNode_ptr _serviceable_node;
     SGPropertyNode_ptr _error_node;
@@ -82,12 +76,13 @@ private:
     SGPropertyNode_ptr _ident_audible_node;
     SGPropertyNode_ptr _volume_node;
     SGPropertyNode_ptr _power_btn_node;
+    SGPropertyNode_ptr _operable_node;
 
     double _time_before_search_sec;
 
     int _last_frequency_khz;
     bool _transmitter_valid;
-    string _last_ident;
+    std::string _last_ident;
     SGGeod _transmitter_pos;
     SGVec3d _transmitter_cart;
     double _transmitter_range_nm;
@@ -95,7 +90,7 @@ private:
     int _ident_count;
     time_t _last_ident_time;
     float _last_volume;
-    string _adf_ident;
+    std::string _adf_ident;
 
     SGSharedPtr<SGSampleGroup> _sgr;
 };