Changeset 6135 in ntrip for trunk/BNC/src
- Timestamp:
- Sep 13, 2014, 9:04:30 AM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppClient.h
r6104 r6135 8 8 #include "pppOptions.h" 9 9 #include "pppModel.h" 10 #include "satObs.h" 10 11 11 12 class bncAntex; -
trunk/BNC/src/PPP/pppSatObs.h
r6027 r6135 1 #ifndef SATOBS_H2 #define SATOBS_H1 #ifndef PPPSATOBS_H 2 #define PPPSATOBS_H 3 3 4 4 #include <string> … … 6 6 #include <newmat.h> 7 7 #include "pppInclude.h" 8 #include "satObs.h" 8 9 #include "bnctime.h" 9 10 -
trunk/BNC/src/pppInclude.h
r6103 r6135 10 10 #include "ephemeris.h" 11 11 #include "t_prn.h" 12 #include "satObs.h" 12 13 13 14 namespace BNC_PPP { … … 34 35 std::string _log; 35 36 bool _error; 36 };37 38 class t_frqObs {39 public:40 t_frqObs() {41 _code = 0.0;42 _codeValid = false;43 _phase = 0.0;44 _phaseValid = false;45 _doppler = 0.0;46 _dopplerValid = false;47 _snr = 0.0;48 _snrValid = false;49 _slip = false;50 _slipCounter = 0;51 _biasJumpCounter = 0;52 }53 std::string _rnxType2ch;54 double _code;55 bool _codeValid;56 double _phase;57 bool _phaseValid;58 double _doppler;59 bool _dopplerValid;60 double _snr;61 bool _snrValid;62 bool _slip;63 int _slipCounter;64 int _biasJumpCounter;65 };66 67 class t_satObs {68 public:69 t_satObs() {}70 ~t_satObs() {for (unsigned ii = 0; ii < _obs.size(); ii++) delete _obs[ii];}71 t_prn _prn;72 bncTime _time;73 std::vector<t_frqObs*> _obs;74 37 }; 75 38
Note:
See TracChangeset
for help on using the changeset viewer.