summaryrefslogtreecommitdiffstats
path: root/src/RemoteControl.h
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-12-21 22:53:23 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2015-12-21 22:53:23 +0100
commit863d9fe32fbff286d4c359d6a5c29184ed511866 (patch)
treefdcb2c34837848db7904eb7f73890da3ff18f6fb /src/RemoteControl.h
parent3f179d73b72c2fcb496e5bada79a782f5d722ffe (diff)
downloaddabmux-863d9fe32fbff286d4c359d6a5c29184ed511866.tar.gz
dabmux-863d9fe32fbff286d4c359d6a5c29184ed511866.tar.bz2
dabmux-863d9fe32fbff286d4c359d6a5c29184ed511866.zip
Replace some boost shared_ptr by std ones
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);
}