Changeset 6965 in ntrip
- Timestamp:
- Jun 25, 2015, 11:11:38 AM (10 years ago)
- Location:
- trunk/BNC/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/src/pppOptions.cpp
r6050 r6965 62 62 ////////////////////////////////////////////////////////////////////////////// 63 63 const std::vector<t_lc::type>& t_pppOptions::LCs(char system) const { 64 64 65 if (system == 'R') { 65 66 return _LCsGLONASS; … … 67 68 else if (system == 'E') { 68 69 return _LCsGalileo; 70 } 71 else if (system == 'C') { 72 return _LCsBDS; 69 73 } 70 74 else { … … 91 95 if (_LCsGLONASS.size() > 0) answ.push_back('R'); 92 96 if (_LCsGalileo.size() > 0) answ.push_back('E'); 97 if (_LCsBDS.size() > 0) answ.push_back('C'); 93 98 return answ; 94 99 } -
trunk/BNC/src/pppOptions.h
r6050 r6965 49 49 double _aprSigTrp; 50 50 double _noiseTrp; 51 int _nmeaPort; 51 52 double _aprSigAmb; 52 53 double _seedingTime; … … 54 55 std::vector<t_lc::type> _LCsGLONASS; 55 56 std::vector<t_lc::type> _LCsGalileo; 57 std::vector<t_lc::type> _LCsBDS; 56 58 }; 57 59
Note:
See TracChangeset
for help on using the changeset viewer.