Changeset 6176 in ntrip for trunk/BNC/src
- Timestamp:
- Sep 14, 2014, 2:20:30 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/satObs.cpp
r6175 r6176 1 #include <iostream> 2 #include <sstream> 1 3 2 4 #include "satObs.h" … … 21 23 //////////////////////////////////////////////////////////////////////////// 22 24 string t_clkCorr::toLine() const { 23 return "CLK"; 25 ostringstream str; 26 str.setf(ios::showpoint | ios::fixed); 27 str << "C " << endl; 28 return str.str(); 24 29 } 25 30 … … 41 46 //////////////////////////////////////////////////////////////////////////// 42 47 string t_orbCorr::toLine() const { 43 return "ORB"; 48 ostringstream str; 49 str.setf(ios::showpoint | ios::fixed); 50 str << "O " << endl; 51 return str.str(); 44 52 } 45 53
Note:
See TracChangeset
for help on using the changeset viewer.