Changeset 5819 in ntrip for trunk/BNC/src/PPP/pppThread.cpp


Ignore:
Timestamp:
Aug 6, 2014, 1:02:08 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppThread.cpp

    r5814 r5819  
    171171  while (it.hasNext()) {
    172172    const t_obs& oldObs = it.next();
    173     t_pppSatObs* newObs = new t_pppSatObs;
     173    t_satObs* newObs = new t_satObs;
    174174   
    175175    newObs->_prn.set(oldObs.satSys, oldObs.satNum);
     
    198198    if (epoData != 0) {
    199199      epoData->_pppSatObs.push_back(newObs);
    200       map<string, t_pppObs*> pppObsMap;
     200      map<string, t_frqObs*> pppObsMap;
    201201      for (unsigned iEntry = 0; iEntry < GNSSENTRY_NUMBER; iEntry++) {
    202202        string hlp(oldObs.rnxStr(iEntry).toAscii().data());
     
    205205          string rnxType2ch = hlp.substr(1);
    206206          if (obsType == 'C' || obsType == 'L') {
    207             t_pppObs* pppObs = 0;
     207            t_frqObs* pppObs = 0;
    208208            if (pppObsMap.find(rnxType2ch) == pppObsMap.end()) {
    209               pppObs                = new t_pppObs();
     209              pppObs                = new t_frqObs();
    210210              pppObsMap[rnxType2ch] = pppObs;
    211211              pppObs->_rnxType2ch   = rnxType2ch;
     
    233233  if (_pppEpochs.size() > 1) {
    234234
    235     const vector<t_pppSatObs*>& pppSatObs = _pppEpochs.front()->_pppSatObs;
     235    const vector<t_satObs*>& pppSatObs = _pppEpochs.front()->_pppSatObs;
    236236
    237237    t_output output;
Note: See TracChangeset for help on using the changeset viewer.