Changeset 6499 in ntrip
- Timestamp:
- Dec 29, 2014, 2:32:42 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/satObs.cpp
r6498 r6499 43 43 // 44 44 //////////////////////////////////////////////////////////////////////////// 45 void t_clkCorr::readEpoch(const string epoLine, std::istream& in, QList<t_clkCorr>& corrList) {45 void t_clkCorr::readEpoch(const string& epoLine, std::istream& in, QList<t_clkCorr>& corrList) { 46 46 } 47 47 … … 84 84 // 85 85 //////////////////////////////////////////////////////////////////////////// 86 void t_orbCorr::readEpoch(const string epoLine, std::istream& in, QList<t_orbCorr>& corrList) {86 void t_orbCorr::readEpoch(const string& epoLine, std::istream& in, QList<t_orbCorr>& corrList) { 87 87 } 88 88 … … 116 116 // 117 117 //////////////////////////////////////////////////////////////////////////// 118 void t_satCodeBias::readEpoch(const string epoLine, std::istream& in, QList<t_satCodeBias>& biasList) {118 void t_satCodeBias::readEpoch(const string& epoLine, std::istream& in, QList<t_satCodeBias>& biasList) { 119 119 } 120 120 … … 153 153 // 154 154 //////////////////////////////////////////////////////////////////////////// 155 void t_satPhaseBias::readEpoch(const string epoLine, std::istream& in, QList<t_satPhaseBias>& biasList) {155 void t_satPhaseBias::readEpoch(const string& epoLine, std::istream& in, QList<t_satPhaseBias>& biasList) { 156 156 } 157 157 … … 180 180 // 181 181 //////////////////////////////////////////////////////////////////////////// 182 void t_vTec::read(const string epoLine, std::istream& in, t_vTec& vTec) {182 void t_vTec::read(const string& epoLine, std::istream& in, t_vTec& vTec) { 183 183 } 184 184 185 185 // 186 186 //////////////////////////////////////////////////////////////////////////// 187 t_corrSSR::e_type t_corrSSR::readEpoLine(const string line, bncTime& epoTime) {187 t_corrSSR::e_type t_corrSSR::readEpoLine(const string& line, bncTime& epoTime) { 188 188 189 189 } -
trunk/BNC/src/satObs.h
r6498 r6499 63 63 t_orbCorr(); 64 64 static void writeEpoch(std::ostream* out, const QList<t_orbCorr>& corrList); 65 static void readEpoch(const std::string epoLine, std::istream& in, QList<t_orbCorr>& corrList);65 static void readEpoch(const std::string& epoLine, std::istream& in, QList<t_orbCorr>& corrList); 66 66 std::string _staID; 67 67 t_prn _prn; … … 77 77 t_clkCorr(); 78 78 static void writeEpoch(std::ostream* out, const QList<t_clkCorr>& corrList); 79 static void readEpoch(const std::string epoLine, std::istream& in, QList<t_clkCorr>& corrList);79 static void readEpoch(const std::string& epoLine, std::istream& in, QList<t_clkCorr>& corrList); 80 80 std::string _staID; 81 81 t_prn _prn; … … 99 99 public: 100 100 static void writeEpoch(std::ostream* out, const QList<t_satCodeBias>& biasList); 101 static void readEpoch(const std::string epoLine, std::istream& in, QList<t_satCodeBias>& biasList);101 static void readEpoch(const std::string& epoLine, std::istream& in, QList<t_satCodeBias>& biasList); 102 102 std::string _staID; 103 103 t_prn _prn; … … 128 128 } 129 129 static void writeEpoch(std::ostream* out, const QList<t_satPhaseBias>& biasList); 130 static void readEpoch(const std::string epoLine, std::istream& in, QList<t_satPhaseBias>& biasList);130 static void readEpoch(const std::string& epoLine, std::istream& in, QList<t_satPhaseBias>& biasList); 131 131 std::string _staID; 132 132 t_prn _prn; … … 147 147 public: 148 148 static void write(std::ostream* out, const t_vTec& vTec); 149 static void read(const std::string epoLine, std::istream& in, t_vTec& vTec);149 static void read(const std::string& epoLine, std::istream& in, t_vTec& vTec); 150 150 std::string _staID; 151 151 bncTime _time; … … 156 156 public: 157 157 enum e_type {clkCorr, orbCorr, codeBias, phaseBias, vTec, unknown}; 158 static e_type readEpoLine(const std::string line, bncTime& epoTime);158 static e_type readEpoLine(const std::string& line, bncTime& epoTime); 159 159 }; 160 160
Note:
See TracChangeset
for help on using the changeset viewer.