| 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 |
|
|---|
| 13 | namespace BNC_PPP {
|
|---|
| 14 |
|
|---|
| 15 | class t_pppRefSat {
|
|---|
| 16 | public:
|
|---|
| 17 | t_pppRefSat ();
|
|---|
| 18 | ~t_pppRefSat();
|
|---|
| 19 | t_prn prn() {return _prn;}
|
|---|
| 20 | void setPrn(t_prn prn) {_prn = prn;}
|
|---|
| 21 | double stecValue() {return _stecValue;}
|
|---|
| 22 | void setStecValue(double stecValue) {_stecValue = stecValue;}
|
|---|
| 23 | private:
|
|---|
| 24 | t_prn _prn;
|
|---|
| 25 | double _stecValue;
|
|---|
| 26 | };
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 | }
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 | #endif /* PPPREFSAT_H_ */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.