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


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.cpp

    r5802 r5810  
    4949
    5050#include "pppClient.h"
    51 #include "ephpool.h"
    52 #include "obspool.h"
    53 #include "satbias.h"
     51#include "pppEphPool.h"
     52#include "pppObsPool.h"
     53#include "pppSatBias.h"
    5454#include "bncconst.h"
    5555#include "bncutils.h"
    56 #include "station.h"
     56#include "pppStation.h"
    5757#include "bncantex.h"
    58 #include "filter.h"
     58#include "pppFilter.h"
    5959
    6060using namespace BNC;
     
    7373// Constructor
    7474//////////////////////////////////////////////////////////////////////////////
    75 t_pppClient::t_pppClient(const t_options* opt) {
     75t_pppClient::t_pppClient(const t_pppOptions* opt) {
    7676  _output   = 0;
    77   _opt      = new t_options(*opt);
     77  _opt      = new t_pppOptions(*opt);
    7878  _log      = new ostringstream();
    79   _ephPool  = new t_ephPool();
    80   _obsPool  = new t_obsPool();
    81   _staRover = new t_station();
    82   _filter   = new t_filter();
     79  _ephPool  = new t_pppEphPool();
     80  _obsPool  = new t_pppObsPool();
     81  _staRover = new t_pppStation();
     82  _filter   = new t_pppFilter();
    8383  _tides    = new t_tides();
    8484
     
    359359//
    360360//////////////////////////////////////////////////////////////////////////////
    361 t_irc t_pppClient::cmpModel(t_station* station, const ColumnVector& xyzc,
     361t_irc t_pppClient::cmpModel(t_pppStation* station, const ColumnVector& xyzc,
    362362                               vector<t_satObs*>& obsVector) {
    363363
Note: See TracChangeset for help on using the changeset viewer.