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

    r5809 r5810  
    2727 * -------------------------------------------------------------------------
    2828 *
    29  * Class:      t_options
     29 * Class:      t_pppOptions
    3030 *
    3131 * Purpose:    Options for PPP client
     
    4040
    4141#include <newmatio.h>
    42 #include "options.h"
     42#include "pppOptions.h"
    4343
    4444using namespace BNC;
     
    4747// Constructor
    4848//////////////////////////////////////////////////////////////////////////////
    49 t_options::t_options() {
     49t_pppOptions::t_pppOptions() {
    5050  _xyzAprRover.ReSize(3); _xyzAprRover = 0.0;
    5151  _ellAprRover.ReSize(3); _ellAprRover = 0.0;
     
    5555// Destructor
    5656//////////////////////////////////////////////////////////////////////////////
    57 t_options::~t_options() {
     57t_pppOptions::~t_pppOptions() {
    5858}
    5959
    6060//
    6161//////////////////////////////////////////////////////////////////////////////
    62 bool t_options::dualFreqRequired() const {
     62bool t_pppOptions::dualFreqRequired() const {
    6363  return true;
    6464}
     
    6666//
    6767//////////////////////////////////////////////////////////////////////////////
    68 bool t_options::biasRequired() const {
     68bool t_pppOptions::biasRequired() const {
    6969  return false;
    7070}
     
    7272//
    7373//////////////////////////////////////////////////////////////////////////////
    74 bool t_options::corrRequired() const {
     74bool t_pppOptions::corrRequired() const {
    7575  return false;
    7676}
     
    7878//
    7979//////////////////////////////////////////////////////////////////////////////
    80 bool t_options::useGlonass() const  {
     80bool t_pppOptions::useGlonass() const  {
    8181  return (_lcGLONASS.size() > 0);
    8282}
     
    8484//
    8585//////////////////////////////////////////////////////////////////////////////
    86 bool t_options::xyzAprRoverSet() const {
     86bool t_pppOptions::xyzAprRoverSet() const {
    8787  return (_xyzAprRover[0] != 0.0 || _xyzAprRover[1] != 0.0 || _xyzAprRover[2] != 0.0);
    8888}
     
    9090//
    9191//////////////////////////////////////////////////////////////////////////////
    92 bool t_options::estTropo() const  {
     92bool t_pppOptions::estTropo() const  {
    9393  return (_sigTropo > 0.0 || _noiseTropo > 0.0);
    9494}
     
    9696//
    9797//////////////////////////////////////////////////////////////////////////////
    98 vector<t_lc::type> t_options::LCs() const {
     98vector<t_lc::type> t_pppOptions::LCs() const {
    9999
    100100  vector<t_lc::type> allLCs = _lcGPS;
     
    131131//
    132132//////////////////////////////////////////////////////////////////////////////
    133 double t_options::maxRes(t_lc::type /* tLC */) const {
     133double t_pppOptions::maxRes(t_lc::type /* tLC */) const {
    134134  return _maxResC1;
    135135}
Note: See TracChangeset for help on using the changeset viewer.