mirror of
				https://github.com/gnss-sdr/gnss-sdr
				synced 2025-10-31 07:13:03 +00:00 
			
		
		
		
	1. Added class name qualifiers for member function definitions
2. Synchronized member function signatures
This commit is contained in:
		| @@ -429,7 +429,7 @@ bool Gnss_Sdr_Supl_Client::load_gal_ephemeris_xml(const std::string& file_name) | ||||
| } | ||||
|  | ||||
|  | ||||
| bool save_gal_ephemeris_map_xml(const std::string& file_name, std::map<int, Galileo_Ephemeris> eph_map) | ||||
| bool Gnss_Sdr_Supl_Client::save_gal_ephemeris_map_xml(const std::string& file_name, std::map<int, Galileo_Ephemeris> eph_map) | ||||
| { | ||||
|     if (eph_map.empty() == false) | ||||
|         { | ||||
| @@ -476,7 +476,7 @@ bool Gnss_Sdr_Supl_Client::load_cnav_ephemeris_xml(const std::string& file_name) | ||||
| } | ||||
|  | ||||
|  | ||||
| bool save_cnav_ephemeris_map_xml(const std::string& file_name, std::map<int, Gps_CNAV_Ephemeris> eph_map) | ||||
| bool Gnss_Sdr_Supl_Client::save_cnav_ephemeris_map_xml(const std::string& file_name, std::map<int, Gps_CNAV_Ephemeris> eph_map) | ||||
| { | ||||
|     if (eph_map.empty() == false) | ||||
|         { | ||||
| @@ -523,7 +523,7 @@ bool Gnss_Sdr_Supl_Client::load_gnav_ephemeris_xml(const std::string& file_name) | ||||
| } | ||||
|  | ||||
|  | ||||
| bool save_gnav_ephemeris_map_xml(const std::string& file_name, std::map<int, Glonass_Gnav_Ephemeris> eph_map) | ||||
| bool Gnss_Sdr_Supl_Client::save_gnav_ephemeris_map_xml(const std::string& file_name, std::map<int, Glonass_Gnav_Ephemeris> eph_map) | ||||
| { | ||||
|     if (eph_map.empty() == false) | ||||
|         { | ||||
|   | ||||
| @@ -122,7 +122,7 @@ public: | ||||
|     /*! | ||||
|      * \brief Save GPS CNAV ephemeris map to XML file. | ||||
|      */ | ||||
|     bool save_cnav_ephemeris_map_xml(const std::string file_name, | ||||
|     bool save_cnav_ephemeris_map_xml(const std::string& file_name, | ||||
|         std::map<int, Gps_CNAV_Ephemeris> eph_map); | ||||
|  | ||||
|     /*! | ||||
| @@ -133,7 +133,7 @@ public: | ||||
|     /*! | ||||
|      * \brief Save Galileo ephemeris map to XML file. | ||||
|      */ | ||||
|     bool save_gal_ephemeris_map_xml(const std::string file_name, | ||||
|     bool save_gal_ephemeris_map_xml(const std::string& file_name, | ||||
|         std::map<int, Galileo_Ephemeris> eph_map); | ||||
|  | ||||
|     /*! | ||||
| @@ -144,7 +144,7 @@ public: | ||||
|     /*! | ||||
|      * \brief Save GLONASS GNAV ephemeris map to XML file. | ||||
|      */ | ||||
|     bool save_gnav_ephemeris_map_xml(const std::string file_name, | ||||
|     bool save_gnav_ephemeris_map_xml(const std::string &file_name, | ||||
|         std::map<int, Glonass_Gnav_Ephemeris> eph_map); | ||||
|  | ||||
|     /*! | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Alexander V. Joura
					Alexander V. Joura