Scorum
auth_util_plugin.hpp
Go to the documentation of this file.
1 
2 #pragma once
3 
4 #include <scorum/app/plugin.hpp>
5 
6 namespace scorum {
7 namespace plugin {
8 namespace auth_util {
9 
11 
19 {
20 public:
22  virtual ~auth_util_plugin();
23 
24  virtual std::string plugin_name() const override;
25  virtual void plugin_initialize(const boost::program_options::variables_map& options) override;
26  virtual void plugin_startup() override;
27  virtual void plugin_shutdown() override;
28 };
29 }
30 }
31 }
application & app() const
Definition: plugin.hpp:119
virtual std::string plugin_name() const override
virtual void plugin_initialize(const boost::program_options::variables_map &options) override
Perform early startup routines and register plugin indexes, callbacks, etc.
virtual void plugin_startup() override
Begin normal runtime operations.
virtual void plugin_shutdown() override
Cleanly shut down the plugin.
Definition: asset.cpp:15