- Timestamp:
- Feb 12, 2012, 2:11:34 PM (13 years ago)
- Location:
- trunk/BNC
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/bncpostprocess.cpp
r3688 r3689 114 114 while ( (epo = _rnxObsFile->nextEpoch()) != 0 ) { 115 115 ++nEpo; 116 117 if (_corrFile) { 118 _corrFile->syncRead(epo->tt); 119 } 120 116 121 for (int iObs = 0; iObs < epo->satObs.size(); iObs++) { 117 122 const t_rnxObsFile::t_satObs& satObs = epo->satObs[iObs]; -
trunk/BNC/corrfile.cpp
r3687 r3689 62 62 } 63 63 64 // Read till a given time 65 //////////////////////////////////////////////////////////////////////////// 66 void t_corrFile::syncRead(const bncTime& tt) { 67 68 69 } -
trunk/BNC/corrfile.h
r3688 r3689 28 28 #include <QtCore> 29 29 #include "bncconst.h" 30 #include "bnctime.h" 30 31 31 32 class t_corrFile : public QObject { … … 35 36 t_corrFile(QString fileName); 36 37 ~t_corrFile(); 38 void syncRead(const bncTime& tt); 37 39 38 40 signals:
Note:
See TracChangeset
for help on using the changeset viewer.