veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
storage.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_STORAGE_H
7#define VERIBLOCK_POP_CPP_C_STORAGE_H
8
9#include "veriblock/pop/c/array.h"
10#include "veriblock/pop/c/type_helpers.h"
11#include "veriblock/pop/c/validation_state.h"
12
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17POP_DECLARE_ENTITY(storage);
18
19POP_ENTITY_NEW_FUNCTION(storage,
20 POP_ARRAY_NAME(string) path,
21 POP_ENTITY_NAME(validation_state) * state);
22
23#ifdef __cplusplus
24} // end of extern "C"
25#endif
26
27#endif