Changeset 246 in ntrip for trunk/BNC/RTCM
- Timestamp:
- Oct 13, 2006, 5:53:42 PM (19 years ago)
- Location:
- trunk/BNC/RTCM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/BNC/RTCM/GPSDecoder.h ¶
r222 r246 2 2 #ifndef GPSDECODER_H 3 3 #define GPSDECODER_H 4 5 #include <QMutexLocker> 4 6 5 7 #include <list> … … 40 42 virtual ~GPSDecoder() {} 41 43 std::list<Observation*> _obsList; 44 protected: 45 QMutex _mutex; 42 46 }; 43 47 -
TabularUnified trunk/BNC/RTCM/RTCM2.cpp ¶
r245 r246 276 276 277 277 void ThirtyBitWord::getHeader(string& buf) { 278 279 if (buf.length() == 0) return; 278 280 279 281 unsigned int W_old = W; -
TabularUnified trunk/BNC/RTCM/RTCM2Decoder.cpp ¶
r243 r246 4 4 // 5 5 //------------------------------------------------------------------------------ 6 7 #include <QMutexLocker> 6 8 7 9 #include "../bncutils.h" … … 32 34 33 35 void RTCM2Decoder::Decode(char* buffer, int bufLen) { 36 37 QMutexLocker locker(&_mutex); 34 38 35 39 _buffer.append(buffer, bufLen);
Note:
See TracChangeset
for help on using the changeset viewer.