Index: trunk/BNC/rinex/reqcanalyze.cpp
===================================================================
--- trunk/BNC/rinex/reqcanalyze.cpp	(revision 4259)
+++ trunk/BNC/rinex/reqcanalyze.cpp	(revision 4260)
@@ -113,6 +113,14 @@
 //  
 ////////////////////////////////////////////////////////////////////////////
-void t_reqcAnalyze::analyzeFile(const t_rnxObsFile* rnxObsFile) {
-  *_log << rnxObsFile->fileName().toAscii().data() << endl;
+void t_reqcAnalyze::analyzeFile(t_rnxObsFile* obsFile) {
+
+  *_log << "Analyze File\n"
+        << "------------\n"
+        << obsFile->fileName().toAscii().data() << endl << endl;
+
+  t_rnxObsFile::t_rnxEpo* epo = 0;
+  while ( (epo = obsFile->nextEpoch()) != 0) {
+
+  }
 
   _log->flush();
Index: trunk/BNC/rinex/reqcanalyze.h
===================================================================
--- trunk/BNC/rinex/reqcanalyze.h	(revision 4259)
+++ trunk/BNC/rinex/reqcanalyze.h	(revision 4260)
@@ -49,5 +49,5 @@
  
  private:
-  void analyzeFile(const t_rnxObsFile* rnxObsFile);
+  void analyzeFile(t_rnxObsFile* obsFile);
 
   QString                _logFileName;
