Changeset 6456 in ntrip for trunk/BNC/src/satObs.cpp


Ignore:
Timestamp:
Dec 27, 2014, 4:05:52 PM (9 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r6455 r6456  
    2222////////////////////////////////////////////////////////////////////////////
    2323void t_clkCorr::writeEpoch(std::ostream* out, const QList<t_clkCorr>& corrList) {
     24  if (!out || corrList.size() == 0) {
     25    return;
     26  }
    2427  *out << "CLOCK CORRECTIONS: " << corrList.size() << endl;
     28
     29  out->flush();
    2530}
    2631
     
    4449////////////////////////////////////////////////////////////////////////////
    4550void t_orbCorr::writeEpoch(std::ostream* out, const QList<t_orbCorr>& corrList) {
     51  if (!out || corrList.size() == 0) {
     52    return;
     53  }
    4654  *out << "ORB CORRECTIONS: " << corrList.size() << endl;
     55
     56  out->flush();
    4757}
    4858
Note: See TracChangeset for help on using the changeset viewer.