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

Detailed Description

template<VarIntMode Mode, typename I>
class altintegration::btc::CVarInt< Mode, I >

Definition at line 539 of file serialize.hpp.

+ Collaboration diagram for altintegration::btc::CVarInt< Mode, I >:

Public Member Functions

 CVarInt (I &nIn)
 
template<typename Stream >
void Serialize (Stream &s) const
 
template<typename Stream >
void Unserialize (Stream &s)
 

Protected Attributes

I & n
 

Constructor & Destructor Documentation

◆ CVarInt()

template<VarIntMode Mode, typename I >
altintegration::btc::CVarInt< Mode, I >::CVarInt ( I &  nIn)
inlineexplicit

Definition at line 544 of file serialize.hpp.

544: n(nIn) {}

Member Function Documentation

◆ Serialize()

template<VarIntMode Mode, typename I >
template<typename Stream >
void altintegration::btc::CVarInt< Mode, I >::Serialize ( Stream &  s) const
inline

Definition at line 547 of file serialize.hpp.

547 {
548 WriteVarInt<Stream, Mode, I>(s, n);
549 }

◆ Unserialize()

template<VarIntMode Mode, typename I >
template<typename Stream >
void altintegration::btc::CVarInt< Mode, I >::Unserialize ( Stream &  s)
inline

Definition at line 552 of file serialize.hpp.

552 {
553 n = ReadVarInt<Stream, Mode, I>(s);
554 }

Member Data Documentation

◆ n

template<VarIntMode Mode, typename I >
I& altintegration::btc::CVarInt< Mode, I >::n
protected

Definition at line 541 of file serialize.hpp.


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