Changeset 3689 in ntrip


Ignore:
Timestamp:
Feb 12, 2012, 2:11:34 PM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpostprocess.cpp

    r3688 r3689  
    114114  while ( (epo = _rnxObsFile->nextEpoch()) != 0 ) {
    115115    ++nEpo;
     116
     117    if (_corrFile) {
     118      _corrFile->syncRead(epo->tt);
     119    }
     120
    116121    for (int iObs = 0; iObs < epo->satObs.size(); iObs++) {
    117122      const t_rnxObsFile::t_satObs& satObs = epo->satObs[iObs];
  • trunk/BNC/corrfile.cpp

    r3687 r3689  
    6262}
    6363
     64// Read till a given time
     65////////////////////////////////////////////////////////////////////////////
     66void t_corrFile::syncRead(const bncTime& tt) {
     67
     68
     69}
  • trunk/BNC/corrfile.h

    r3688 r3689  
    2828#include <QtCore>
    2929#include "bncconst.h"
     30#include "bnctime.h"
    3031
    3132class t_corrFile : public QObject {
     
    3536  t_corrFile(QString fileName);
    3637  ~t_corrFile();
     38  void syncRead(const bncTime& tt);
    3739
    3840 signals:
Note: See TracChangeset for help on using the changeset viewer.