summaryrefslogtreecommitdiffstats
path: root/nexus/Controller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'nexus/Controller.cpp')
-rw-r--r--nexus/Controller.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/nexus/Controller.cpp b/nexus/Controller.cpp
index 9d4ff3c..17fb519 100644
--- a/nexus/Controller.cpp
+++ b/nexus/Controller.cpp
@@ -34,9 +34,11 @@
extern "C" int init_module(void *, unsigned int, const char *);
extern "C" int delete_module(const char *, unsigned int);
-Controller::Controller(const char *name, PropertyManager *propMngr) {
+Controller::Controller(const char *name, PropertyManager *propMngr,
+ IControllerHandler *handlers) {
mPropMngr = propMngr;
mName = strdup(name);
+ mHandlers = handlers;
mBoundInterface = NULL;
}