Changeset 4260 in ntrip


Ignore:
Timestamp:
Jun 22, 2012, 9:51:04 AM (12 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/rinex
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/rinex/reqcanalyze.cpp

    r4259 r4260  
    113113// 
    114114////////////////////////////////////////////////////////////////////////////
    115 void t_reqcAnalyze::analyzeFile(const t_rnxObsFile* rnxObsFile) {
    116   *_log << rnxObsFile->fileName().toAscii().data() << endl;
     115void 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  }
    117125
    118126  _log->flush();
  • trunk/BNC/rinex/reqcanalyze.h

    r4257 r4260  
    4949 
    5050 private:
    51   void analyzeFile(const t_rnxObsFile* rnxObsFile);
     51  void analyzeFile(t_rnxObsFile* obsFile);
    5252
    5353  QString                _logFileName;
Note: See TracChangeset for help on using the changeset viewer.