Changeset 5810 in ntrip for trunk/BNC/src/PPP/pppClient.h


Ignore:
Timestamp:
Aug 6, 2014, 11:34:36 AM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5802 r5810  
    44#include <sstream>
    55#include <vector>
    6 #include "ppp.h"
     6#include "pppInclude.h"
    77#include "ephemeris.h"
    8 #include "options.h"
     8#include "pppOptions.h"
    99#include "pppModel.h"
    1010
     
    1313namespace BNC {
    1414
    15 class t_ephPool;
    16 class t_obsPool;
     15class t_pppEphPool;
     16class t_pppObsPool;
    1717class t_satObs;
    18 class t_station;
    19 class t_filter;
     18class t_pppStation;
     19class t_pppFilter;
    2020
    2121class t_pppClient {
    2222 public:
    23   t_pppClient(const t_options* opt);                                                     
     23  t_pppClient(const t_pppOptions* opt);                                                     
    2424  ~t_pppClient();                                                     
    2525
     
    3030  void processEpoch(const std::vector<t_pppSatObs*>& pppSatObs, t_output* output);
    3131
    32   const t_ephPool* ephPool() const {return _ephPool;}
    33   const t_obsPool* obsPool() const {return _obsPool;}
     32  const t_pppEphPool* ephPool() const {return _ephPool;}
     33  const t_pppObsPool* obsPool() const {return _obsPool;}
    3434  const bncAntex*  antex() const {return _antex;}
    35   const t_station* staRover() const {return _staRover;}
     35  const t_pppStation* staRover() const {return _staRover;}
    3636  double           offGG() const {return _offGG;}
    3737
    3838  std::ostringstream& log() {return *_log;}
    39   const t_options*    opt() const {return _opt;}
     39  const t_pppOptions*    opt() const {return _opt;}
    4040
    4141  static void bancroft(const Matrix& BBpass, ColumnVector& pos);
     
    4949  t_irc prepareObs(const std::vector<t_pppSatObs*>& pppSatObs,
    5050                   std::vector<t_satObs*>& obsVector, bncTime& epoTime);
    51   t_irc cmpModel(t_station* station, const ColumnVector& xyzc,
     51  t_irc cmpModel(t_pppStation* station, const ColumnVector& xyzc,
    5252                 std::vector<t_satObs*>& obsVector);
    5353  t_irc cmpBancroft(const bncTime& epoTime, std::vector<t_satObs*>& obsVector,
     
    5656
    5757  t_output*              _output;
    58   t_ephPool*             _ephPool;
    59   t_obsPool*             _obsPool;
     58  t_pppEphPool*             _ephPool;
     59  t_pppObsPool*             _obsPool;
    6060  bncTime                _epoTimeRover;
    61   t_station*             _staRover;
     61  t_pppStation*             _staRover;
    6262  bncAntex*              _antex;
    63   t_filter*              _filter;
     63  t_pppFilter*              _filter;
    6464  double                 _offGG;
    6565  std::vector<t_satObs*> _obsRover;
    6666  std::ostringstream*    _log;
    67   t_options*             _opt;
     67  t_pppOptions*             _opt;
    6868  t_tides*               _tides;
    6969};
Note: See TracChangeset for help on using the changeset viewer.