Changeset 1130 in ntrip for trunk/BNC/RTCM3/RTCM3Decoder.cpp


Ignore:
Timestamp:
Sep 22, 2008, 11:39:58 AM (16 years ago)
Author:
weber
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/RTCM3/RTCM3Decoder.cpp

    r1127 r1130  
    227227        }
    228228        _Parser.typeSize = 0;
     229
     230        // Antenna XYZ-H
     231        // -------------
     232        for (int kk = 0; kk < _Parser.antSize; kk += 4) {
     233          _antList.push_back(_Parser.antList[kk + 0]);
     234          _antList.push_back(_Parser.antList[kk + 1]);
     235          _antList.push_back(_Parser.antList[kk + 2]);
     236          _antList.push_back(_Parser.antList[kk + 3]);
     237        }
     238        _Parser.antSize = 0;
    229239   
    230240        while(int rr = RTCM3Parser(&_Parser)) {
Note: See TracChangeset for help on using the changeset viewer.