aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/EventHandler.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/EventHandler.cpp')
-rw-r--r--src/crepe/api/EventHandler.cpp8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/crepe/api/EventHandler.cpp b/src/crepe/api/EventHandler.cpp
index 93a116a..d90d765 100644
--- a/src/crepe/api/EventHandler.cpp
+++ b/src/crepe/api/EventHandler.cpp
@@ -1,2 +1,8 @@
#include "EventHandler.h"
-bool IEventHandlerWrapper::exec(const Event & e) { return call(e); }
+
+using namespace crepe;
+
+// Implementation of IEventHandlerWrapper::exec
+bool IEventHandlerWrapper::exec(const Event & e) {
+ return call(e);
+}