aboutsummaryrefslogtreecommitdiff
path: root/src/EventManager.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/EventManager.hpp')
-rw-r--r--src/EventManager.hpp10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/EventManager.hpp b/src/EventManager.hpp
index 2e4184e..73b95ea 100644
--- a/src/EventManager.hpp
+++ b/src/EventManager.hpp
@@ -1,6 +1,8 @@
#ifndef EVENT_MANAGER_H
#define EVENT_MANAGER_H 1
+#include "ContentManager.hpp"
+
#include <event2/buffer.h>
#include <event2/event.h>
#include <event2/http.h>
@@ -20,7 +22,7 @@ struct ev_callback {
typedef std::tuple<std::string, struct ev_callback> EvUrlCallback;
-static inline void default_evhttp_callback(struct evhttp_request *const req,
+static inline void default_evhttp_callback(struct evhttp_request * const req,
EvUserData ud) {
(void)ud;
@@ -42,12 +44,14 @@ public:
~EventManager();
bool Init(std::string = "127.0.0.1", uint16_t port = 9000);
- void setDefaultCallback(EvFunction fn, EvUserData dat);
- void addCallback(std::string url, EvFunction fn, EvUserData dat);
+ void SetDefaultCallback(EvFunction fn, EvUserData dat);
+ void AddCallback(std::string url, EvFunction fn, EvUserData dat);
+ void AddContentManager(ContentManager const & cmgr);
private:
struct ev_callback m_DefaultCallback;
std::vector<EvUrlCallback> m_UrlCallbacks;
+ ContentModules m_ContentModules;
struct event_config *m_EvConfig = nullptr;
struct event_base *m_EvBase = nullptr;