Changeset 2526 in ntrip for trunk/BNC/bncrawfile.cpp


Ignore:
Timestamp:
Aug 3, 2010, 1:44:55 PM (14 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncrawfile.cpp

    r2525 r2526  
    105105// Raw Input
    106106////////////////////////////////////////////////////////////////////////////
    107 QByteArray bncRawFile::readChunk() {
     107QByteArray bncRawFile::readChunk(QByteArray& currStaID, QByteArray& currFormat){
    108108
    109109  QByteArray data;
     
    113113    QStringList lst  = line.split(' ');
    114114   
    115     QByteArray staID_current  = lst.value(0).toAscii();
    116     QByteArray format_current = lst.value(1).toAscii();
    117     int        nBytes        = lst.value(2).toInt();
     115    currStaID  = lst.value(0).toAscii();
     116    currFormat = lst.value(1).toAscii();
     117    int nBytes = lst.value(2).toInt();
    118118
    119119    data = _inpFile->read(nBytes);
Note: See TracChangeset for help on using the changeset viewer.