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

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

update regarding PPP

File size: 498 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 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;}
23private:
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.