X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FInstrumentation%2Ftacan.hxx;h=083efa665042b6fbf2d1081a88ce3acdcde9b653;hb=e59fabaf8276a0f49266e47ff2f59a93b0c7700c;hp=7c8873aed438ffd2dc0fec3ab60b6144eb002b11;hpb=118d8fbca5d98e994d572e4c922f76ba2cab9e52;p=flightgear.git diff --git a/src/Instrumentation/tacan.hxx b/src/Instrumentation/tacan.hxx index 7c8873aed..083efa665 100644 --- a/src/Instrumentation/tacan.hxx +++ b/src/Instrumentation/tacan.hxx @@ -46,10 +46,10 @@ private: void search (double frequency, double longitude_rad, double latitude_rad, double altitude_m); - double searchChannel (const string& channel); + double searchChannel (const std::string& channel); void valueChanged (SGPropertyNode *); - string _name; + std::string _name; unsigned int _num; SGPropertyNode_ptr _longitude_node; @@ -85,7 +85,7 @@ private: SGPropertyNode_ptr _mp_callsign_node; // FIXME bool _new_frequency; - string _channel; + std::string _channel; double _last_distance_nm; double _frequency_mhz; double _time_before_search_sec; @@ -98,16 +98,16 @@ private: double _transmitter_range_nm; double _transmitter_bearing_deg; double _transmitter_bias; - string _transmitter_name; - string _transmitter_ident; + std::string _transmitter_name; + std::string _transmitter_ident; double _mobile_lat, _mobile_lon; double _mobile_elevation_ft; double _mobile_range_nm; double _mobile_bearing_deg; double _mobile_bias; - string _mobile_name; - string _mobile_ident; + std::string _mobile_name; + std::string _mobile_ident; int _listener_active; };