Changeset 6175 in ntrip for trunk/BNC/src/RTCM3
- Timestamp:
- Sep 14, 2014, 2:17:38 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp
r6142 r6175 349 349 while (itOrb.hasNext()) { 350 350 const t_orbCorr& orbCorr = itOrb.next(); 351 *_out << "O " << orbCorr.toString() << endl;351 *_out << orbCorr.toLine() << endl; 352 352 } 353 353 QListIterator<t_clkCorr> itClk(clkCorrections); 354 354 while (itClk.hasNext()) { 355 355 const t_clkCorr& clkCorr = itClk.next(); 356 *_out << "C " << clkCorr.toString() << endl;356 *_out << clkCorr.toLine() << endl; 357 357 } 358 358 _out->flush();
Note:
See TracChangeset
for help on using the changeset viewer.