Changeset 6177 in ntrip
- Timestamp:
- Sep 14, 2014, 2:26:14 PM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp
r6175 r6177 349 349 while (itOrb.hasNext()) { 350 350 const t_orbCorr& orbCorr = itOrb.next(); 351 *_out << orbCorr.toLine() << endl;351 *_out << orbCorr.toLine(); 352 352 } 353 353 QListIterator<t_clkCorr> itClk(clkCorrections); 354 354 while (itClk.hasNext()) { 355 355 const t_clkCorr& clkCorr = itClk.next(); 356 *_out << clkCorr.toLine() << endl;356 *_out << clkCorr.toLine(); 357 357 } 358 358 _out->flush(); -
trunk/BNC/src/satObs.cpp
r6176 r6177 1 1 #include <iostream> 2 #include <iomanip> 2 3 #include <sstream> 3 4 … … 18 19 //////////////////////////////////////////////////////////////////////////// 19 20 t_clkCorr::t_clkCorr(const string& line) { 21 istringstream in(line); 20 22 } 21 23 … … 25 27 ostringstream str; 26 28 str.setf(ios::showpoint | ios::fixed); 27 str << "C " << endl; 29 str << "C " << _time.gpsw() << setprecision(2) << _time.gpssec() << ' ' 30 << _prn.toString() << ' ' 31 << setw(10) << setprecision(4) << _dClk << ' ' 32 << setw(10) << setprecision(4) << _dotDClk << ' ' 33 << setw(10) << setprecision(4) << _dotDotDClk << endl; 28 34 return str.str(); 29 35 } … … 41 47 //////////////////////////////////////////////////////////////////////////// 42 48 t_orbCorr::t_orbCorr(const string& line) { 49 istringstream in(line); 43 50 } 44 51
Note:
See TracChangeset
for help on using the changeset viewer.