Changeset 6176 in ntrip for trunk


Ignore:
Timestamp:
Sep 14, 2014, 2:20:30 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/satObs.cpp

    r6175 r6176  
     1#include <iostream>
     2#include <sstream>
    13
    24#include "satObs.h"
     
    2123////////////////////////////////////////////////////////////////////////////
    2224string 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();
    2429}
    2530
     
    4146////////////////////////////////////////////////////////////////////////////
    4247string 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();
    4452}
    4553
Note: See TracChangeset for help on using the changeset viewer.