Changeset 9507 in ntrip for trunk/BNC/src/PPP
- Timestamp:
- Oct 5, 2021, 4:01:01 PM (3 years ago)
- Location:
- trunk/BNC/src/PPP
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/PPP/pppRefSat.h
r8956 r9507 15 15 class t_pppRefSat { 16 16 public: 17 t_pppRefSat (); 18 ~t_pppRefSat(); 17 t_pppRefSat() { 18 _prn = t_prn(); 19 _stecValue = 0.0; 20 }; 21 t_pppRefSat(t_prn prn, double stecValue) { 22 _prn = prn; 23 _stecValue = stecValue; 24 } 25 ~t_pppRefSat() {}; 19 26 t_prn prn() {return _prn;} 20 27 void setPrn(t_prn prn) {_prn = prn;} … … 25 32 double _stecValue; 26 33 }; 27 28 29 34 } 30 35
Note:
See TracChangeset
for help on using the changeset viewer.