Changeset 3756 in ntrip for trunk/BNC/rinex/corrfile.cpp


Ignore:
Timestamp:
Apr 1, 2012, 4:04:20 PM (12 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r3752 r3756  
    4242#include "corrfile.h"
    4343#include "bncutils.h"
     44#include "bncephuser.h"
    4445
    4546using namespace std;
     
    8586    if (stopRead(tt)) {
    8687      if (corrs.size()) {
     88
     89        QListIterator<QString> it(corrs);
     90        while (it.hasNext()) {
     91          const QString& cLine = it.next();
     92          t_corr* corr = new t_corr();
     93          corr->readLine(cLine);
     94          if (corr->tRao.valid()) {
     95            _corrIODs[corr->prn] = corr->iod;
     96          }
     97        }
     98
    8799        emit newCorrections(corrs);
    88100      }
Note: See TracChangeset for help on using the changeset viewer.