Kagome
Polkadot Runtime Engine in C++17
intrinsic_resolver.hpp
Go to the documentation of this file.
1 
6 #ifndef KAGOME_CORE_RUNTIME_WAVM_INTRINSIC_RESOLVER_HPP
7 #define KAGOME_CORE_RUNTIME_WAVM_INTRINSIC_RESOLVER_HPP
8 
9 #include <WAVM/Runtime/Linker.h>
10 
11 #include <memory>
12 #include <string>
13 
15 
16 namespace WAVM::Intrinsics {
17  struct Function;
18 }
19 
20 namespace kagome::runtime::wavm {
21 
28  class IntrinsicResolver : public WAVM::Runtime::Resolver {
29  public:
30  virtual ~IntrinsicResolver() = default;
31  };
32 } // namespace kagome::runtime::wavm
33 
34 #endif // KAGOME_CORE_RUNTIME_WAVM_INTRINSIC_RESOLVER_HPP