- Timestamp:
- Jun 22, 2012, 9:51:04 AM (12 years ago)
- Location:
- trunk/BNC/rinex
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/rinex/reqcanalyze.cpp
r4259 r4260 113 113 // 114 114 //////////////////////////////////////////////////////////////////////////// 115 void t_reqcAnalyze::analyzeFile(const t_rnxObsFile* rnxObsFile) { 116 *_log << rnxObsFile->fileName().toAscii().data() << endl; 115 void t_reqcAnalyze::analyzeFile(t_rnxObsFile* obsFile) { 116 117 *_log << "Analyze File\n" 118 << "------------\n" 119 << obsFile->fileName().toAscii().data() << endl << endl; 120 121 t_rnxObsFile::t_rnxEpo* epo = 0; 122 while ( (epo = obsFile->nextEpoch()) != 0) { 123 124 } 117 125 118 126 _log->flush(); -
trunk/BNC/rinex/reqcanalyze.h
r4257 r4260 49 49 50 50 private: 51 void analyzeFile( const t_rnxObsFile* rnxObsFile);51 void analyzeFile(t_rnxObsFile* obsFile); 52 52 53 53 QString _logFileName;
Note:
See TracChangeset
for help on using the changeset viewer.