Changeset 2778 in ntrip for trunk/BNC/bncpppclient.h


Ignore:
Timestamp:
Dec 12, 2010, 6:09:08 PM (13 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpppclient.h

    r2776 r2778  
    4343  double       P1;
    4444  double       P2;
     45  double       P5;
    4546  double       P3;
    4647  double       L1;
    4748  double       L2;
     49  double       L5;
    4850  double       L3;
    4951  codeType     codeTypeF1;
    5052  codeType     codeTypeF2;
     53  codeType     codeTypeF5;
    5154  ColumnVector xx;
    5255  ColumnVector vv;
     
    7376      delete itGlo.value();
    7477    }
     78    QMapIterator<QString, t_satData*> itGal(satDataGal);
     79    while (itGal.hasNext()) {
     80      itGal.next();
     81      delete itGal.value();
     82    }
    7583  }
    7684  unsigned sizeGPS() const {return satDataGPS.size();}
    7785  unsigned sizeGlo() const {return satDataGlo.size();}
    78   unsigned sizeAll() const {return satDataGPS.size() + satDataGlo.size();}
     86  unsigned sizeGal() const {return satDataGal.size();}
     87  unsigned sizeAll() const {return satDataGPS.size() + satDataGlo.size() +
     88                                   satDataGal.size();}
    7989  bncTime                    tt;
    8090  QMap<QString, t_satData*> satDataGPS;
    8191  QMap<QString, t_satData*> satDataGlo;
     92  QMap<QString, t_satData*> satDataGal;
    8293};
    8394
     
    139150      slipCntL1 = -1;
    140151      slipCntL2 = -1;
     152      slipCntL5 = -1;
    141153    }
    142154    ~slipInfo(){}
    143155    int slipCntL1;
    144156    int slipCntL2;
     157    int slipCntL5;
    145158  };
    146159
Note: See TracChangeset for help on using the changeset viewer.