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

Last change on this file since 6176 was 6176, checked in by mervart, 10 years ago
File size: 1.2 KB
Line 
1#include <iostream>
2#include <sstream>
3
4#include "satObs.h"
5using namespace std;
6
7//
8////////////////////////////////////////////////////////////////////////////
9t_clkCorr::t_clkCorr() {
10 _iod = 0;
11 _dClk = 0.0;
12 _dotDClk = 0.0;
13 _dotDotDClk = 0.0;
14 _clkPartial = 0.0;
15}
16
17//
18////////////////////////////////////////////////////////////////////////////
19t_clkCorr::t_clkCorr(const string& line) {
20}
21
22//
23////////////////////////////////////////////////////////////////////////////
24string t_clkCorr::toLine() const {
25 ostringstream str;
26 str.setf(ios::showpoint | ios::fixed);
27 str << "C " << endl;
28 return str.str();
29}
30
31//
32////////////////////////////////////////////////////////////////////////////
33t_orbCorr::t_orbCorr() {
34 _xr.ReSize(3); _xr = 0.0;
35 _dotXr.ReSize(3); _dotXr = 0.0;
36 _iod = 0;
37 _system = 'R';
38}
39
40//
41////////////////////////////////////////////////////////////////////////////
42t_orbCorr::t_orbCorr(const string& line) {
43}
44
45//
46////////////////////////////////////////////////////////////////////////////
47string t_orbCorr::toLine() const {
48 ostringstream str;
49 str.setf(ios::showpoint | ios::fixed);
50 str << "O " << endl;
51 return str.str();
52}
53
Note: See TracBrowser for help on using the repository browser.