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

Detailed Description

Definition at line 56 of file messages.hpp.

+ Collaboration diagram for altintegration::btc::InvMsg:

Public Member Functions

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

Public Attributes

std::vector< InvvInv
 
 ADD_SERIALIZE_METHODS
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 62 of file messages.hpp.

62 {
63 READWRITE(this->vInv);
64 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 69 of file messages.hpp.

69{ return !(a == b); }

◆ operator==

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

Definition at line 66 of file messages.hpp.

66 {
67 return a.vInv == b.vInv;
68 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::InvMsg::ADD_SERIALIZE_METHODS

Definition at line 59 of file messages.hpp.

◆ vInv

std::vector<Inv> altintegration::btc::InvMsg::vInv

Definition at line 57 of file messages.hpp.


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