Changeset 2385 in ntrip for trunk/BNC/bncapp.cpp


Ignore:
Timestamp:
Mar 26, 2010, 11:26:46 AM (14 years ago)
Author:
mervart
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncapp.cpp

    r2257 r2385  
    6161  _logStream   = 0;
    6262  _caster      = 0;
     63  _rawOutFile  = 0;
    6364
    6465  // Lists of Ephemeris
     
    128129
    129130  delete _currentDateAndTimeGPS;
     131
     132  delete _rawOutFile;
    130133}
    131134
     
    703706  }
    704707}
     708
     709// Raw Output
     710////////////////////////////////////////////////////////////////////////////
     711void bncApp::writeRawData(const QByteArray& data) {
     712
     713////  QMutexLocker locker(&_mutex);
     714////
     715////  if (!_rawOutFile) {
     716////    QByteArray rawOutFileName = "./bnc.raw";
     717////    _rawOutFile = new QFile(rawOutFileName);
     718////    _rawOutFile->open(QIODevice::WriteOnly);
     719////  }
     720////
     721////  _rawOutFile->write(data);
     722////  _rawOutFile->flush();
     723}
Note: See TracChangeset for help on using the changeset viewer.