Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
wallet_api_plugin.hpp
Go to the documentation of this file.
1#pragma once
2
5
7
8namespace sysio {
9
10using namespace appbase;
11
12class wallet_api_plugin : public plugin<wallet_api_plugin> {
13public:
15
16 wallet_api_plugin() = default;
21 virtual ~wallet_api_plugin() override = default;
22
23 virtual void set_program_options(options_description& cli, options_description& cfg) override {}
24 void plugin_initialize(const variables_map& vm);
25 void plugin_startup();
27
28private:
29};
30
31}
wallet_api_plugin(wallet_api_plugin &&)=delete
virtual void set_program_options(options_description &cli, options_description &cfg) override
APPBASE_PLUGIN_REQUIRES((wallet_plugin)(http_plugin)) wallet_api_plugin()=default
wallet_api_plugin & operator=(const wallet_api_plugin &)=delete
wallet_api_plugin(const wallet_api_plugin &)=delete
void plugin_initialize(const variables_map &vm)
virtual ~wallet_api_plugin() override=default
wallet_api_plugin & operator=(wallet_api_plugin &&)=delete
void cli()