source: ntrip/trunk/BNC/src/PPP/pppUtils.h@ 7231

Last change on this file since 7231 was 7231, checked in by stuerze, 9 years ago

some interfaces are added to be able to handle ssr vtec in PPP mode

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 520 bytes
Line 
1#ifndef PPPUTILS_H
2#define PPPUTILS_H
3
4#include <string>
5#include <newmat.h>
6#include "satObs.h"
7
8namespace BNC_PPP {
9
10class t_pppUtils {
11 public:
12 t_pppUtils();
13 ~t_pppUtils();
14 void putCodeBias(t_satCodeBias* satCodeBias);
15 const t_satCodeBias* satCodeBias(const t_prn& prn) const {
16 return _satCodeBiases[prn.toInt()];
17 }
18 void putTec(t_vTec* vTec);
19 const t_vTec* vTec() const {
20 return _vTec;
21 }
22
23 private:
24 t_satCodeBias* _satCodeBiases[t_prn::MAXPRN+1];
25 t_vTec* _vTec;
26};
27
28}
29
30#endif
Note: See TracBrowser for help on using the repository browser.