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

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

minor re-organisation of PPP parts

  • Property svn:keywords set to Author Date Id Rev URL;svn:eol-style=native
  • Property svn:mime-type set to text/plain
File size: 413 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
19 private:
20 t_satCodeBias* _satCodeBiases[t_prn::MAXPRN+1];
21
22};
23
24}
25
26#endif
Note: See TracBrowser for help on using the repository browser.