Kagome
Polkadot Runtime Engine in C++17
internal_api_impl.hpp
Go to the documentation of this file.
1 
6 #ifndef KAGOME_API_INTERNALAPIIMPL
7 #define KAGOME_API_INTERNALAPIIMPL
8 
10 
11 namespace kagome::api {
12 
13  class InternalApiImpl : public InternalApi {
14  public:
15  outcome::result<void> setLogLevel(const std::string &group,
16  const std::string &level) override;
17  };
18 } // namespace kagome::api
19 
20 #endif // KAGOME_API_INTERNALAPIIMPL
outcome::result< void > setLogLevel(const std::string &group, const std::string &level) override