summaryrefslogtreecommitdiffhomepage
path: root/plugins/webbox/webbox.h
diff options
context:
space:
mode:
authorRoland Reichwein <mail@reichwein.it>2020-04-12 22:20:33 +0200
committerRoland Reichwein <mail@reichwein.it>2020-04-12 22:20:33 +0200
commit4732dc63657f4c6fc342f7674f7dc7c666b293dc (patch)
treeda91a5dbbd62982284435d252dd89ac963952ee9 /plugins/webbox/webbox.h
parent3f778eecc705990598f1033e6245522f42e2fcb5 (diff)
webbox (WIP)
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();