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

Last change on this file since 8905 was 8905, checked in by stuerze, 4 years ago

some developments regarding PPP, not completed!

File size: 708 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 ~t_pppRefSat();
19 enum e_status {undefined, initialized, changed, unchanged};// ev. wieder löschen
20 e_status status() const {return _status;}
21 void setStatus(e_status status) {_status = status;}
22 t_prn prn() {return _prn;}
23 void setPrn(t_prn prn) {_prn = prn;}
24 double stecValue() {return _stecValue;}
25 void setStecValue(double stecValue) {_stecValue = stecValue;}
26private:
27 e_status _status;
28 t_prn _prn;
29 double _stecValue;
30};
31
32
33}
34
35
36#endif /* PPPREFSAT_H_ */
Note: See TracBrowser for help on using the repository browser.