Changeset 5744 in ntrip


Ignore:
Timestamp:
Aug 2, 2014, 4:47:09 PM (10 years ago)
Author:
mervart
Message:
 
Location:
trunk/BNC/src/PPP
Files:
3 edited

Legend:

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

    r5743 r5744  
    4444};
    4545
    46 class t_satObs {
     46class t_pppSatObs {
    4747 public:
    4848  t_prn              _prn;
  • trunk/BNC/src/PPP/pppClient.cpp

    r5743 r5744  
    305305//
    306306//////////////////////////////////////////////////////////////////////////////
    307 void t_pppClient::initOutput(t_pppOutput* output) {
     307void t_pppClient::initOutput(t_output* output) {
    308308  _output = output;
    309309  _output->_numSat = 0;
     
    397397//////////////////////////////////////////////////////////////////////////////
    398398void t_pppClient::processEpoch(int numSatRover, const t_pppSatObs* satObsRover,
    399                              t_pppOutput* output) {
     399                             t_output* output) {
    400400
    401401  try {
  • trunk/BNC/src/PPP/pppClient.h

    r5743 r5744  
    2929  void putBiases(int numBiases, const t_satBiases* biases);   
    3030  void processEpoch(int numSatRover, const t_pppSatObs* satObsRover,
    31                     t_pppOutput* output);                       
     31                    t_output* output);                       
    3232  const t_ephPool* ephPool() const {return _ephPool;}
    3333  const t_obsPool* obsPool() const {return _obsPool;}
     
    4141
    4242 private:
    43   void initOutput(t_pppOutput* output);
     43  void initOutput(t_output* output);
    4444  void finish(t_irc irc);
    4545  void clearObs();
     
    5353  double cmpOffGG(std::vector<t_satObs*>& obsVector);
    5454
    55   t_pppOutput*           _output;
     55  t_output*              _output;
    5656  t_ephPool*             _ephPool;
    5757  t_obsPool*             _obsPool;
Note: See TracChangeset for help on using the changeset viewer.