source: ntrip/trunk/BNC/src/pppCrdFile.h@ 6749

Last change on this file since 6749 was 6050, checked in by mervart, 10 years ago
File size: 498 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 ColumnVector _xyz;
21 ColumnVector _neuAnt;
22 };
23
24 static void readCrdFile(const std::string& fileName, std::vector<t_staInfo>& staInfoVec);
25};
26
27}
28
29#endif
Note: See TracBrowser for help on using the repository browser.