Changeset 10546 in ntrip for trunk/BNC/src/RTCM3


Ignore:
Timestamp:
Sep 25, 2024, 5:08:35 PM (7 weeks ago)
Author:
stuerze
Message:

replacement of obsolete qt-class members

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/RTCM3/bits.h

    r10534 r10546  
    220220//////////////////////////////////////////////////////////
    221221#define SBASTOINT(type, value) static_cast<type>(round(value))
     222
    222223#define SBASADDBITS(a, b) {bitbuffer = (bitbuffer<<(a)) \
    223224                       |(SBASTOINT(long long,b)&((1ULL<<a)-1)); \
     
    225226                       while(numbits >= 8) { \
    226227                       buffer[size++] = bitbuffer>>(numbits-8);numbits -= 8;}}
     228
    227229#define SBASADDBITSFLOAT(a,b,c) {long long i = SBASTOINT(long long,(b)/(c)); \
    228230                             SBASADDBITS(a,i)};
Note: See TracChangeset for help on using the changeset viewer.