veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
altintegration::btc::BigEndian< I > Class Template Reference

Serialization wrapper class for big-endian integers. More...

Detailed Description

template<typename I>
class altintegration::btc::BigEndian< I >

Use this wrapper around integer types that are stored in memory in native byte order, but serialized in big endian notation. This is only intended to implement serializers that are compatible with existing formats, and its use is not recommended for new data structures.

Only 16-bit types are supported for now.

Definition at line 567 of file serialize.hpp.

#include <serialize.hpp>

+ Collaboration diagram for altintegration::btc::BigEndian< I >:

Public Member Functions

 BigEndian (I &val)
 
template<typename Stream >
void Serialize (Stream &s) const
 
template<typename Stream >
void Unserialize (Stream &s)
 

Protected Attributes

I & m_val
 

Constructor & Destructor Documentation

◆ BigEndian()

template<typename I >
altintegration::btc::BigEndian< I >::BigEndian ( I &  val)
inlineexplicit

Definition at line 572 of file serialize.hpp.

572 : m_val(val) {
573 static_assert(std::is_unsigned<I>::value,
574 "BigEndian type must be unsigned integer");
575 static_assert(sizeof(I) == 2 && std::numeric_limits<I>::min() == 0 &&
576 std::numeric_limits<I>::max() ==
577 std::numeric_limits<uint16_t>::max(),
578 "Unsupported BigEndian size");
579 }

Member Function Documentation

◆ Serialize()

template<typename I >
template<typename Stream >
void altintegration::btc::BigEndian< I >::Serialize ( Stream &  s) const
inline

Definition at line 582 of file serialize.hpp.

582 {
583 ser_writedata16be(s, m_val);
584 }

◆ Unserialize()

template<typename I >
template<typename Stream >
void altintegration::btc::BigEndian< I >::Unserialize ( Stream &  s)
inline

Definition at line 587 of file serialize.hpp.

587 {
588 m_val = ser_readdata16be(s);
589 }

Member Data Documentation

◆ m_val

template<typename I >
I& altintegration::btc::BigEndian< I >::m_val
protected

Definition at line 569 of file serialize.hpp.


The documentation for this class was generated from the following file: