Changeset 8621 in ntrip for trunk/BNC/src/bncrinex.cpp


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

minor changes

File:
1 edited

Legend:

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

    r8617 r8621  
    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;
     
    630630          << left  << setw(3) << "S" + frqObs->_rnxType2ch << ' '
    631631          << right << setw(8) << setprecision(3) << frqObs->_snr;
    632     }   
    633     if (frqObs->_lockTimeValid && printLockTime) {
     632    }
     633    if (frqObs->_lockTimeValid && outLockTime) {
    634634      str << ' '
    635635          << left  << setw(3) << "T" + frqObs->_rnxType2ch << ' '
Note: See TracChangeset for help on using the changeset viewer.