veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
publication_data.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_PUBLICATION_DATA_H
7#define VERIBLOCK_POP_CPP_C_ENTITIES_PUBLICATION_DATA_H
8
9#include "veriblock/pop/c/array.h"
10#include "veriblock/pop/c/entities/serde.h"
11#include "veriblock/pop/c/type_helpers.h"
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17POP_DECLARE_ENTITY(publication_data);
18
19POP_ENTITY_SERIALIZE_TO_VBK(publication_data);
20POP_ENTITY_DESERIALIZE_FROM_VBK(publication_data);
21
22POP_ENTITY_GETTER_FUNCTION(publication_data, int64_t, identifier);
23POP_ENTITY_GETTER_FUNCTION(publication_data, POP_ARRAY_NAME(u8), header);
24POP_ENTITY_GETTER_FUNCTION(publication_data, POP_ARRAY_NAME(u8), payout_info);
25POP_ENTITY_GETTER_FUNCTION(publication_data, POP_ARRAY_NAME(u8), context_info);
26
27POP_ENTITY_TO_JSON(publication_data);
28
29#ifdef __cplusplus
30}
31#endif
32
33#endif