Changeset 5826 in ntrip for trunk/BNC/src/PPP/pppObsPool.h


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

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/PPP/pppObsPool.h

    r5822 r5826  
    55#include <deque>
    66#include "pppSatObs.h"
    7 #include "pppSatBias.h"
    87#include "bnctime.h"
    98
    109namespace BNC_PPP {
    1110
    12 class t_frqObsPool {
     11class t_pppObsPool {
    1312 public:
    1413
     
    2524  };
    2625
    27   t_frqObsPool();
    28   ~t_frqObsPool();
    29   void putBiases(t_pppSatBias* satBias);
     26  t_pppObsPool();
     27  ~t_pppObsPool();
     28  void putBias(t_satBias* satBias);
    3029
    3130  void putEpoch(const bncTime& epoTime, std::vector<t_pppSatObs*>& obsVector);
    3231
    33   const t_pppSatBias* satBias(const t_prn& prn) const { 
     32  const t_satBias* satBias(const t_prn& prn) const { 
    3433    return _satBiases[prn.toInt()];
    3534  }
     35
    3636  t_epoch* lastEpoch() {
    3737    if (_epochs.size()) {
     
    4444
    4545 private:
    46   t_pppSatBias*        _satBiases[t_prn::MAXPRN+1];
     46  t_satBias*           _satBiases[t_prn::MAXPRN+1];
    4747  std::deque<t_epoch*> _epochs;
    4848};
Note: See TracChangeset for help on using the changeset viewer.