source: ntrip/trunk/BNC/src/satObs.cpp@ 6158

Last change on this file since 6158 was 6158, checked in by mervart, 10 years ago
File size: 855 bytes
RevLine 
[6144]1
2#include "satObs.h"
3using namespace std;
4
5//
6////////////////////////////////////////////////////////////////////////////
7t_clkCorr::t_clkCorr() {
8}
9
10//
11////////////////////////////////////////////////////////////////////////////
12t_clkCorr::t_clkCorr(const string& str) {
13}
14
15//
16////////////////////////////////////////////////////////////////////////////
17string t_clkCorr::toString() const {
18 return "CLK";
19}
20
21//
22////////////////////////////////////////////////////////////////////////////
23t_orbCorr::t_orbCorr() {
24}
25
26//
27////////////////////////////////////////////////////////////////////////////
28t_orbCorr::t_orbCorr(const string& str) {
[6158]29 _xr.ReSize(3); _xr = 0.0;
30 _dotXr.ReSize(3); _dotXr = 0.0;
[6144]31}
32
33//
34////////////////////////////////////////////////////////////////////////////
35string t_orbCorr::toString() const {
36 return "ORB";
37}
38
Note: See TracBrowser for help on using the repository browser.