Changeset 3002 in ntrip for trunk/BNC/RTCM3
- Timestamp:
- Feb 22, 2011, 11:24:49 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM3/RTCM3Decoder.cpp
r3001 r3002 115 115 } 116 116 117 // Find the corresponding coDecoder, initialize a new one if necessary118 // -------------------------------------------------------------------119 if (!_coDecoders.contains(_staID.toAscii())) {120 _coDecoders[_staID.toAscii()] = new RTCM3coDecoder(_staID);121 }122 RTCM3coDecoder* coDecoder = _coDecoders[_staID.toAscii()];123 124 117 // Try to decode Clock and Orbit Corrections 125 118 // ----------------------------------------- 126 119 if (_mode == unknown || _mode == corrections) { 120 121 // Find the corresponding coDecoder 122 // -------------------------------- 123 if (!_coDecoders.contains(_staID.toAscii())) { 124 _coDecoders[_staID.toAscii()] = new RTCM3coDecoder(_staID); 125 } 126 RTCM3coDecoder* coDecoder = _coDecoders[_staID.toAscii()]; 127 127 128 if ( coDecoder->Decode(buffer, bufLen, errmsg) == success ) { 128 129 decoded = true;
Note:
See TracChangeset
for help on using the changeset viewer.