veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
network_byte_pair.h
1// Copyright (c) 2019-2022 Xenios SEZC
2// https://www.veriblock.org
3// Distributed under the MIT software license, see the accompanying
4// file LICENSE or http://www.opensource.org/licenses/mit-license.php.
5
6#ifndef VERIBLOCK_POP_CPP_C_ENTITIES_NETWORK_BYTE_PAIR_H
7#define VERIBLOCK_POP_CPP_C_ENTITIES_NETWORK_BYTE_PAIR_H
8
9#include "stdbool.h"
10#include "stdint.h"
11#include "veriblock/pop/c/type_helpers.h"
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17POP_DECLARE_ENTITY(network_byte_pair);
18
19POP_ENTITY_GETTER_FUNCTION(network_byte_pair, bool, has_network_byte);
20POP_ENTITY_GETTER_FUNCTION(network_byte_pair, uint8_t, network_byte);
21POP_ENTITY_GETTER_FUNCTION(network_byte_pair, uint8_t, type_id);
22
23POP_GENERATE_DEFAULT_VALUE(network_byte_pair);
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif