FrameCodec &schemaVersion(const sbe_int32_t value)
 {
     *((sbe_int32_t *)(buffer_ + offset_ + 4)) = SBE_LITTLE_ENDIAN_ENCODE_32(value);
     return *this;
 }
Example #2
0
 LevelInfoMesage &sid(const sbe_uint32_t value)
 {
     *((sbe_uint32_t *)(buffer_ + offset_ + 32)) = SBE_LITTLE_ENDIAN_ENCODE_32(value);
     return *this;
 }
 sbe_int32_t schemaVersion(void) const
 {
     return SBE_LITTLE_ENDIAN_ENCODE_32(*((sbe_int32_t *)(buffer_ + offset_ + 4)));
 }
Example #4
0
 sbe_uint32_t sid(void) const
 {
     return SBE_LITTLE_ENDIAN_ENCODE_32(*((sbe_uint32_t *)(buffer_ + offset_ + 32)));
 }