Changeset 649 in ntrip for trunk/BNC/RTCM
- Timestamp:
- Jan 4, 2008, 3:23:10 PM (17 years ago)
- Location:
- trunk/BNC/RTCM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/BNC/RTCM/GPSDecoder.h
r626 r649 29 29 #include <QPointer> 30 30 #include <QList> 31 32 #include "bncconst.h" 31 33 32 34 class t_obsInternal { … … 87 89 class GPSDecoder { 88 90 public: 89 virtual voidDecode(char* buffer, int bufLen) = 0;91 virtual t_irc Decode(char* buffer, int bufLen) = 0; 90 92 91 93 virtual ~GPSDecoder() { -
trunk/BNC/RTCM/RTCM2Decoder.cpp
r627 r649 62 62 // 63 63 64 voidRTCM2Decoder::Decode(char* buffer, int bufLen) {64 t_irc RTCM2Decoder::Decode(char* buffer, int bufLen) { 65 65 66 66 _buffer.append(buffer, bufLen); … … 72 72 _PP.getPacket(_buffer); 73 73 if (!_PP.valid()) { 74 return ;74 return failure; 75 75 } 76 76 … … 108 108 } 109 109 } 110 return success; 110 111 } 111 112 -
trunk/BNC/RTCM/RTCM2Decoder.h
r645 r649 34 34 RTCM2Decoder(); 35 35 virtual ~RTCM2Decoder(); 36 virtual voidDecode(char* buffer, int bufLen);36 virtual t_irc Decode(char* buffer, int bufLen); 37 37 38 38 private:
Note:
See TracChangeset
for help on using the changeset viewer.