Index: trunk/BNC/bncpostprocess.cpp
===================================================================
--- trunk/BNC/bncpostprocess.cpp	(revision 3688)
+++ trunk/BNC/bncpostprocess.cpp	(revision 3689)
@@ -114,4 +114,9 @@
   while ( (epo = _rnxObsFile->nextEpoch()) != 0 ) {
     ++nEpo;
+
+    if (_corrFile) {
+      _corrFile->syncRead(epo->tt);
+    }
+
     for (int iObs = 0; iObs < epo->satObs.size(); iObs++) {
       const t_rnxObsFile::t_satObs& satObs = epo->satObs[iObs];
Index: trunk/BNC/corrfile.cpp
===================================================================
--- trunk/BNC/corrfile.cpp	(revision 3688)
+++ trunk/BNC/corrfile.cpp	(revision 3689)
@@ -62,2 +62,8 @@
 }
 
+// Read till a given time
+////////////////////////////////////////////////////////////////////////////
+void t_corrFile::syncRead(const bncTime& tt) {
+
+
+}
Index: trunk/BNC/corrfile.h
===================================================================
--- trunk/BNC/corrfile.h	(revision 3688)
+++ trunk/BNC/corrfile.h	(revision 3689)
@@ -28,4 +28,5 @@
 #include <QtCore>
 #include "bncconst.h"
+#include "bnctime.h"
 
 class t_corrFile : public QObject {
@@ -35,4 +36,5 @@
   t_corrFile(QString fileName);
   ~t_corrFile();
+  void syncRead(const bncTime& tt);
 
  signals:
