Rev | Line | |
---|
[8905] | 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 |
|
---|
| 13 | namespace BNC_PPP {
|
---|
| 14 |
|
---|
| 15 | class t_pppRefSat {
|
---|
| 16 | public:
|
---|
[9507] | 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() {};
|
---|
[8905] | 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;}
|
---|
| 30 | private:
|
---|
| 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.