Changeset 5810 in ntrip for trunk/BNC/src/PPP/pppStation.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/pppStation.cpp

    r5809 r5810  
    2727 * -------------------------------------------------------------------------
    2828 *
    29  * Class:      t_station
     29 * Class:      t_pppStation
    3030 *
    3131 * Purpose:    Processed station
     
    3939 * -----------------------------------------------------------------------*/
    4040
    41 #include "station.h"
     41#include "pppStation.h"
    4242#include "bncutils.h"
    4343#include "pppModel.h"
     
    4848// Constructor
    4949//////////////////////////////////////////////////////////////////////////////
    50 t_station::t_station() {
     50t_pppStation::t_pppStation() {
    5151  _windUp    = new t_windUp();
    5252}
     
    5454// Destructor
    5555//////////////////////////////////////////////////////////////////////////////
    56 t_station::~t_station() {
     56t_pppStation::~t_pppStation() {
    5757  delete _windUp;
    5858}
     
    6060//
    6161//////////////////////////////////////////////////////////////////////////////
    62 void t_station::setXyzApr(const ColumnVector& xyzApr) {
     62void t_pppStation::setXyzApr(const ColumnVector& xyzApr) {
    6363  _xyzApr = xyzApr;
    6464  _ellApr.ReSize(3);
     
    6868//
    6969//////////////////////////////////////////////////////////////////////////////
    70 void t_station::setNeuEcc(const ColumnVector& neuEcc) {
     70void t_pppStation::setNeuEcc(const ColumnVector& neuEcc) {
    7171  _neuEcc = neuEcc;
    7272  _xyzEcc.ReSize(3);
     
    7676//
    7777//////////////////////////////////////////////////////////////////////////////
    78 double t_station::windUp(const bncTime& time, t_prn prn,
     78double t_pppStation::windUp(const bncTime& time, t_prn prn,
    7979                         const ColumnVector& rSat) const {
    8080  return _windUp->value(time, _xyzApr, prn, rSat);
Note: See TracChangeset for help on using the changeset viewer.