summaryrefslogtreecommitdiffhomepage
path: root/plugins/webbox/webbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/webbox/webbox.h')
-rw-r--r--plugins/webbox/webbox.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/plugins/webbox/webbox.h b/plugins/webbox/webbox.h
index d6d26c1..e2644f3 100644
--- a/plugins/webbox/webbox.h
+++ b/plugins/webbox/webbox.h
@@ -2,8 +2,15 @@
#include "../../plugin_interface.h"
+#include <memory>
+#include <string>
+#include <unordered_map>
+
class webbox_plugin: public webserver_plugin_interface
{
+private:
+ std::unordered_map<std::string, std::shared_ptr<Command>> m_commands;
+
public:
webbox_plugin();
~webbox_plugin();