Changeset 1762 in ntrip


Ignore:
Timestamp:
Mar 9, 2009, 1:10:02 PM (15 years ago)
Author:
mervart
Message:

* empty log message *

Location:
trunk/BNC
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bnczerodecoder.cpp

    r1535 r1762  
    7575  if (!_out || _fileDate != currDate) {
    7676    delete _out;
    77     _out = new ofstream( (_fileName + "_" +
    78                           currDate.toString("yyMMdd")).toAscii().data() );
     77    QByteArray fileName =
     78           (_fileName + "_" + currDate.toString("yyMMdd")).toAscii();
     79    bncSettings settings;
     80    if (Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
     81      _out = new ofstream(fileName.data(), ios::out | ios::app);
     82    }
     83    else {
     84      _out = new ofstream(fileName.data());
     85    }
    7986    _fileDate = currDate;
    8087  }
  • trunk/BNC/todo.txt

    r1761 r1762  
    99Please have a look.
    1010
    11 (2) "Append" files doesn't work with "ZERO" decoder.
     11(2) GW: Keep an eye on www.igs-ip.net/PENC0.
    1212
    13 (3) GW: Keep an eye on www.igs-ip.net/PENC0.
    14 
Note: See TracChangeset for help on using the changeset viewer.