Changeset 8620 in ntrip for branches/BNC_2.12/src/bncrinex.cpp


Ignore:
Timestamp:
Feb 28, 2019, 3:17:07 PM (5 years ago)
Author:
stuerze
Message:

minor changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/BNC_2.12/src/bncrinex.cpp

    r8616 r8620  
    601601// One Line in ASCII (Internal) Format
    602602////////////////////////////////////////////////////////////////////////////
    603 string bncRinex::asciiSatLine(const t_satObs& obs, bool printLockTime) {
     603string bncRinex::asciiSatLine(const t_satObs& obs, bool outLockTime) {
    604604
    605605  ostringstream str;
     
    631631          << right << setw(8) << setprecision(3) << frqObs->_snr;
    632632    }
    633     if (frqObs->_lockTimeValid && printLockTime) {
     633    if (frqObs->_lockTimeValid && outLockTime) {
    634634      str << ' '
    635635          << left  << setw(3) << "T" + frqObs->_rnxType2ch << ' '
    636636          << right << setw(9) << setprecision(3) << frqObs->_lockTime;
    637     }   
     637    }
    638638  }
    639639
Note: See TracChangeset for help on using the changeset viewer.