source: ntrip/trunk/BNC/src/PPP/pppRefSat.h@ 9507

Last change on this file since 9507 was 9507, checked in by stuerze, 3 years ago

minor changes

File size: 639 bytes
Line 
1/*
2 * pppRefSat.h
3 *
4 * Created on: Feb 27, 2020
5 * Author: stuerze
6 */
7
8#ifndef PPPREFSAT_H_
9#define PPPREFSAT_H_
10
11#include "t_prn.h"
12
13namespace BNC_PPP {
14
15class t_pppRefSat {
16public:
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() {};
26 t_prn prn() {return _prn;}
27 void setPrn(t_prn prn) {_prn = prn;}
28 double stecValue() {return _stecValue;}
29 void setStecValue(double stecValue) {_stecValue = stecValue;}
30private:
31 t_prn _prn;
32 double _stecValue;
33};
34}
35
36
37#endif /* PPPREFSAT_H_ */
Note: See TracBrowser for help on using the repository browser.