veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
address.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_ADDRESS_H
7#define VERIBLOCK_POP_CPP_C_ENTITIES_ADDRESS_H
8
9#include "stdint.h"
10#include "veriblock/pop/c/array.h"
11#include "veriblock/pop/c/entities/serde.h"
12#include "veriblock/pop/c/type_helpers.h"
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18POP_DECLARE_ENTITY(address);
19
20POP_ENTITY_GETTER_FUNCTION(address, uint8_t, address_type);
21POP_ENTITY_GETTER_FUNCTION(address, POP_ARRAY_NAME(string), address);
22
23POP_GENERATE_DEFAULT_VALUE(address);
24
25#ifdef __cplusplus
26}
27#endif
28
29#endif