summaryrefslogtreecommitdiffstats
path: root/src/RemoteControl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/RemoteControl.h')
-rw-r--r--src/RemoteControl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/RemoteControl.h b/src/RemoteControl.h
index 46a828f..e7bb7fe 100644
--- a/src/RemoteControl.h
+++ b/src/RemoteControl.h
@@ -31,6 +31,7 @@
#include <list>
#include <map>
+#include <memory>
#include <string>
#include <atomic>
#include <iostream>
@@ -105,7 +106,7 @@ class RemoteControllable {
controller.enrol(this);
}
- virtual void enrol_at(boost::shared_ptr<BaseRemoteController> controller) {
+ virtual void enrol_at(std::shared_ptr<BaseRemoteController> controller) {
controller->enrol(this);
}