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

Detailed Description

Definition at line 17 of file messages.hpp.

+ Collaboration diagram for altintegration::btc::AddrMsg:

Public Member Functions

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

Public Attributes

std::vector< AddressvAddr
 
 ADD_SERIALIZE_METHODS
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 23 of file messages.hpp.

23 {
24 READWRITE(this->vAddr);
25 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 30 of file messages.hpp.

30 {
31 return !(a == b);
32 }

◆ operator==

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

Definition at line 27 of file messages.hpp.

27 {
28 return a.vAddr == b.vAddr;
29 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::AddrMsg::ADD_SERIALIZE_METHODS

Definition at line 20 of file messages.hpp.

◆ vAddr

std::vector<Address> altintegration::btc::AddrMsg::vAddr

Definition at line 18 of file messages.hpp.


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