Changeset 6965 in ntrip for trunk/BNC/src/pppOptions.cpp


Ignore:
Timestamp:
Jun 25, 2015, 11:11:38 AM (9 years ago)
Author:
stuerze
Message:

some additions regarding BDS

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/pppOptions.cpp

    r6050 r6965  
    6262//////////////////////////////////////////////////////////////////////////////
    6363const std::vector<t_lc::type>& t_pppOptions::LCs(char system) const {
     64
    6465  if      (system == 'R') {
    6566    return _LCsGLONASS;
     
    6768  else if (system == 'E') {
    6869    return _LCsGalileo;
     70  }
     71  else if (system == 'C') {
     72    return  _LCsBDS;
    6973  }
    7074  else {
     
    9195  if (_LCsGLONASS.size() > 0) answ.push_back('R');
    9296  if (_LCsGalileo.size() > 0) answ.push_back('E');
     97  if (_LCsBDS.size()     > 0) answ.push_back('C');
    9398  return answ;
    9499}
Note: See TracChangeset for help on using the changeset viewer.