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

Detailed Description

Definition at line 170 of file net_entities.hpp.

+ Collaboration diagram for altintegration::btc::Inv:

Public Member Functions

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

Public Attributes

int32_t type
 
uint256 hash
 
 ADD_SERIALIZE_METHODS
 

Friends

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

Member Function Documentation

◆ SerializationOp()

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

Definition at line 177 of file net_entities.hpp.

177 {
178 READWRITE(this->type);
179 READWRITE(this->hash);
180 }

Friends And Related Function Documentation

◆ operator!=

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

Definition at line 185 of file net_entities.hpp.

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

◆ operator==

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

Definition at line 182 of file net_entities.hpp.

182 {
183 return a.type == b.type && a.hash == b.hash;
184 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::Inv::ADD_SERIALIZE_METHODS

Definition at line 174 of file net_entities.hpp.

◆ hash

uint256 altintegration::btc::Inv::hash

Definition at line 172 of file net_entities.hpp.

◆ type

int32_t altintegration::btc::Inv::type

Definition at line 171 of file net_entities.hpp.


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