Changeset 2710 in ntrip for trunk/BNC/RTCM


Ignore:
Timestamp:
Nov 18, 2010, 12:44:38 PM (13 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/RTCM
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM/GPSDecoder.h

    r2709 r2710  
    114114};
    115115
    116 typedef t_obs* p_obs;
    117 
    118116class GPSDecoder {
    119117 public:
     
    121119
    122120  virtual ~GPSDecoder() {
    123     QListIterator<p_obs> it(_obsList);
     121    QListIterator<t_obs*> it(_obsList);
    124122    while (it.hasNext()) {
    125       p_obs obs = it.next();
     123      t_obs* obs = it.next();
    126124      if (obs && obs->_status == t_obs::initial) {
    127125        delete obs;
     
    151149  };
    152150
    153   QList<p_obs>     _obsList;
     151  QList<t_obs*>    _obsList;
    154152  QList<int>       _typeList;  // RTCM   message types
    155153  QStringList      _antType;   // RTCM   antenna descriptor
  • trunk/BNC/RTCM/RTCM2Decoder.cpp

    r2709 r2710  
    140140         
    141141        for (int iSat=0; iSat < _ObsBlock.nSat; iSat++) {
    142           p_obs obs = new t_obs();
     142          t_obs* obs = new t_obs();
    143143          _obsList.push_back(obs);
    144144          if (_ObsBlock.PRN[iSat] > 100) {
     
    314314
    315315    // new observation
    316     p_obs new_obs = 0;
     316    t_obs* new_obs = 0;
    317317
    318318    // missing IOD
Note: See TracChangeset for help on using the changeset viewer.