Changeset 260 in ntrip


Ignore:
Timestamp:
Oct 18, 2006, 4:51:54 PM (18 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncrinex.cpp

    r256 r260  
    182182  // --------------------
    183183  resolveFileName(datTim);
     184
     185  // Append to existing file and return
     186  // ----------------------------------
     187  if ( QFile::exists(_fName) ) {
     188    QSettings settings;
     189    if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
     190      _out.open(_fName.data(), ios::app);
     191      _out.setf(ios::showpoint | ios::fixed);
     192      _headerWritten = true;
     193      return;
     194    }
     195  }
     196
    184197  _out.open(_fName.data());
    185198  _out.setf(ios::showpoint | ios::fixed);
Note: See TracChangeset for help on using the changeset viewer.