Kagome
Polkadot Runtime Engine in C++17
rpc_io_context.hpp
Go to the documentation of this file.
1 
6 #ifndef KAGOME_CORE_API_RPC_IO_CONTEXT_HPP
7 #define KAGOME_CORE_API_RPC_IO_CONTEXT_HPP
8 
9 #include <boost/asio/io_context.hpp>
10 
11 namespace kagome::api {
12 
13  class RpcContext : public boost::asio::io_context {
14  public:
15  using boost::asio::io_context::io_context;
16  };
17 
18 } // namespace kagome::api
19 
20 #endif // KAGOME_CORE_API_RPC_IO_CONTEXT_HPP