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


Ignore:
Timestamp:
Aug 23, 2010, 6:25:26 PM (14 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/bncpppclient.h

    r2548 r2575  
    143143  };
    144144
     145  class t_ephPair {
     146   public:
     147    t_ephPair() {
     148      last = 0;
     149      prev = 0;
     150    }
     151    ~t_ephPair() {
     152      delete last;
     153      delete prev;
     154    }
     155    t_eph* last;
     156    t_eph* prev;
     157  };
     158
    145159  t_irc getSatPos(const bncTime& tt, const QString& prn,
    146160                  ColumnVector& xc, ColumnVector& vv);
     
    152166  QByteArray              _staID;
    153167  QMutex                  _mutex;
    154   QMap<QString, t_eph*>  _eph;
     168  QMap<QString, t_ephPair*> _eph;
    155169  QMap<QString, t_corr*>  _corr;
    156170  QMap<QString, t_bias*>  _bias;
Note: See TracChangeset for help on using the changeset viewer.