diff options
Diffstat (limited to 'plugins/webbox/webbox.h')
-rw-r--r-- | plugins/webbox/webbox.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/webbox/webbox.h b/plugins/webbox/webbox.h index e2644f3..dd2fb93 100644 --- a/plugins/webbox/webbox.h +++ b/plugins/webbox/webbox.h @@ -6,11 +6,15 @@ #include <string> #include <unordered_map> +class Command; + class webbox_plugin: public webserver_plugin_interface { private: std::unordered_map<std::string, std::shared_ptr<Command>> m_commands; + void registerCommand(std::shared_ptr<Command>); + public: webbox_plugin(); ~webbox_plugin(); |