mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 04:00:34 +00:00
1. Added class name qualifiers for member function definitions
2. Synchronized member function signatures
This commit is contained in:
parent
32843a09f4
commit
875b622cd1
@ -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);
|
||||
|
||||
/*!
|
||||
|
Loading…
Reference in New Issue
Block a user