veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
altintegration::btc::BlockMsg Struct Reference

Detailed Description

Definition at line 272 of file messages.hpp.

+ Collaboration diagram for altintegration::btc::BlockMsg:

Public Member Functions

template<typename Stream , typename Operation >
void SerializationOp (Stream &s, Operation ser_action)
 

Public Attributes

Block block
 
 ADD_SERIALIZE_METHODS
 

Friends

bool operator== (const BlockMsg &a, const BlockMsg &b)
 
bool operator!= (const BlockMsg &a, const BlockMsg &b)
 

Member Function Documentation

◆ SerializationOp()

template<typename Stream , typename Operation >
void altintegration::btc::BlockMsg::SerializationOp ( Stream &  s,
Operation  ser_action 
)
inline

Definition at line 278 of file messages.hpp.

278 {
279 READWRITE(this->block);
280 }

Friends And Related Function Documentation

◆ operator!=

bool operator!= ( const BlockMsg a,
const BlockMsg b 
)
friend

Definition at line 285 of file messages.hpp.

285 {
286 return !(a == b);
287 }

◆ operator==

bool operator== ( const BlockMsg a,
const BlockMsg b 
)
friend

Definition at line 282 of file messages.hpp.

282 {
283 return a.block == b.block;
284 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::BlockMsg::ADD_SERIALIZE_METHODS

Definition at line 275 of file messages.hpp.

◆ block

Block altintegration::btc::BlockMsg::block

Definition at line 273 of file messages.hpp.


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