source: ntrip/branches/BNC_2.12/src/pppCrdFile.h@ 8089

Last change on this file since 8089 was 7523, checked in by stuerze, 8 years ago

minor changes to add receiver information in sinex troposphere file header

File size: 526 bytes
Line 
1#ifndef PPPCRDFILE_H
2#define PPPCRDFILE_H
3
4#include <string>
5#include <vector>
6#include "newmat.h"
7
8namespace BNC_PPP {
9
10class t_pppCrdFile {
11 public:
12 class t_staInfo {
13 public:
14 t_staInfo() {
15 _xyz.ReSize(3); _xyz = 0.0;
16 _neuAnt.ReSize(3); _neuAnt = 0.0;
17 }
18 std::string _name;
19 std::string _antenna;
20 std::string _receiver;
21 ColumnVector _xyz;
22 ColumnVector _neuAnt;
23 };
24
25 static void readCrdFile(const std::string& fileName, std::vector<t_staInfo>& staInfoVec);
26};
27
28}
29
30#endif
Note: See TracBrowser for help on using the repository browser.