veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
popdata.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_POPDATA_H
7#define VERIBLOCK_POP_CPP_C_ENTITIES_POPDATA_H
8
9#include <stdbool.h>
10
11#include "veriblock/pop/c/array.h"
12#include "veriblock/pop/c/entities/atv.h"
13#include "veriblock/pop/c/entities/serde.h"
14#include "veriblock/pop/c/entities/vbkblock.h"
15#include "veriblock/pop/c/entities/vtb.h"
16#include "veriblock/pop/c/type_helpers.h"
17
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22POP_DECLARE_ENTITY(pop_data);
23
24POP_ENTITY_GETTER_FUNCTION(pop_data, POP_ARRAY_NAME(atv), atvs);
25POP_ENTITY_GETTER_FUNCTION(pop_data, POP_ARRAY_NAME(vtb), vtbs);
26POP_ENTITY_GETTER_FUNCTION(pop_data, POP_ARRAY_NAME(vbk_block), context);
27
28POP_ENTITY_TO_JSON(pop_data, bool verbose);
29
30POP_ENTITY_SERIALIZE_TO_VBK(pop_data);
31POP_ENTITY_DESERIALIZE_FROM_VBK(pop_data);
32
33POP_GENERATE_DEFAULT_VALUE(pop_data);
34
35#ifdef __cplusplus
36}
37#endif
38
39#endif