source: ntrip/trunk/BNC/src/PPP/pppSatBias.h@ 5809

Last change on this file since 5809 was 5809, checked in by mervart, 10 years ago
File size: 637 bytes
Line 
1#ifndef SATBIAS_H
2#define SATBIAS_H
3
4#include <map>
5#include "ppp.h"
6#include "bnctime.h"
7
8namespace BNC {
9
10typedef std::string t_biasType;
11
12class t_satBias {
13 public:
14 t_satBias(const t_satBiases& satBiases);
15 ~t_satBias() {}
16 const t_prn& prn() const {return _prn;}
17 const std::map<t_biasType, double>& biases() const {return _biases;}
18 int nx() const {return _nx;}
19 int jumpCount() const {return _jumpCount;}
20 private:
21 t_prn _prn;
22 bncTime _time;
23 int _nx;
24 int _jumpCount;
25 std::map<t_biasType, double> _biases;
26};
27
28}
29
30#endif
Note: See TracBrowser for help on using the repository browser.