Changeset 5825 in ntrip for trunk/BNC/src/PPP/pppInclude.h


Ignore:
Timestamp:
Aug 6, 2014, 1:31:33 PM (10 years ago)
Author:
mervart
Message:
 
File:
1 edited

Legend:

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

    r5819 r5825  
    1111namespace BNC_PPP {
    1212
    13 class pppExcept {
     13class t_except {
    1414 public:
    15   pppExcept(const char* msg) {
     15  t_except(const char* msg) {
    1616    _msg = msg;
    1717  }
    18   ~pppExcept() {}
     18  ~t_except() {}
    1919  std::string what() {return _msg;}
    2020 private:
     
    9696};
    9797
    98 class t_bias {
     98class t_frqBias {
    9999 public:
    100   std::string _rnxType3ch;
    101   double      _value;
     100  t_frqBias() {
     101    _code       = 0.0;         
     102    _codeValid  = false;     
     103    _phase      = 0.0;         
     104    _phaseValid = false;   
     105  }
     106  std::string _rnxType2ch;
     107  double      _code;         
     108  bool        _codeValid;     
     109  double      _phase;         
     110  bool        _phaseValid;   
    102111};
    103112
    104 class t_satBiases {
     113class t_satBias {
    105114 public:
    106   t_prn               _prn;
    107   bncTime             _time;
    108   int                 _nx;
    109   int                 _jumpCount;
    110   std::vector<t_bias> _biases;
     115  t_prn                  _prn;
     116  bncTime                _time;
     117  int                    _nx;
     118  int                    _jumpCount;
     119  std::vector<t_frqBias> _bias;
    111120};
    112121
Note: See TracChangeset for help on using the changeset viewer.