Kagome
Polkadot Runtime Engine in C++17
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
Kagome
Consensus
core
Development guide
Guide for `outcome::result<T>`
Rules
Terms
Tooling
Overview
Your first Kagome chain
Runing Kagome in docker container
Start private Kagome network
Namespaces
Classes
Files
File List
core
api
application
assets
authority_discovery
authorship
blockchain
clock
common
consensus
containers
crypto
filesystem
host_api
injector
log
macro
metrics
network
offchain
outcome
parachain
primitives
runtime
binaryen
common
runtime_api
wavm
intrinsics
compartment_wrapper.cpp
compartment_wrapper.hpp
core_api_factory_impl.cpp
core_api_factory_impl.hpp
instance_environment_factory.cpp
instance_environment_factory.hpp
intrinsic_resolver.hpp
memory_impl.cpp
memory_impl.hpp
module.cpp
module.hpp
module_cache.cpp
module_cache.hpp
module_factory_impl.cpp
module_factory_impl.hpp
module_instance.cpp
module_instance.hpp
module_params.cpp
module_params.hpp
wavm_external_memory_provider.cpp
wavm_external_memory_provider.hpp
wavm_internal_memory_provider.cpp
wavm_internal_memory_provider.hpp
core_api_factory.hpp
instance_environment.hpp
memory.hpp
memory_provider.hpp
module.hpp
module_factory.hpp
module_instance.hpp
module_repository.hpp
persistent_result.hpp
ptr_size.hpp
raw_executor.hpp
runtime_code_provider.hpp
runtime_environment_factory.hpp
runtime_properties_cache.hpp
runtime_upgrade_tracker.hpp
trie_storage_provider.hpp
types.hpp
scale
storage
subscription
telemetry
transaction_pool
utils
docs
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
compartment_wrapper.hpp
Go to the documentation of this file.
1
6
#ifndef KAGOME_CORE_RUNTIME_WAVM_IMPL_COMPARTMENT_WRAPPER_HPP
7
#define KAGOME_CORE_RUNTIME_WAVM_IMPL_COMPARTMENT_WRAPPER_HPP
8
9
#include <memory>
10
#include <string>
11
12
namespace
WAVM::Runtime
{
13
struct
Compartment;
14
}
15
16
namespace
kagome::runtime::wavm
{
17
18
struct
CompartmentWrapperImpl;
19
24
class
CompartmentWrapper
final {
25
public
:
26
CompartmentWrapper
(std::string &&name);
27
~
CompartmentWrapper
();
28
29
WAVM::Runtime::Compartment *getCompartment()
const
;
30
31
private
:
32
std::shared_ptr<CompartmentWrapperImpl>
impl_
;
33
};
34
35
}
// namespace kagome::runtime::wavm
36
37
#endif // KAGOME_CORE_RUNTIME_WAVM_IMPL_COMPARTMENT_WRAPPER_HPP
WAVM::Runtime
Definition:
compartment_wrapper.hpp:12
kagome::runtime::wavm
Definition:
compartment_wrapper.cpp:12
kagome::runtime::wavm::CompartmentWrapper
Definition:
compartment_wrapper.hpp:24
kagome::runtime::wavm::CompartmentWrapper::impl_
std::shared_ptr< CompartmentWrapperImpl > impl_
Definition:
compartment_wrapper.hpp:32
core
runtime
wavm
compartment_wrapper.hpp
Generated by
1.8.11