diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-21 22:53:23 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-12-21 22:53:23 +0100 |
commit | 863d9fe32fbff286d4c359d6a5c29184ed511866 (patch) | |
tree | fdcb2c34837848db7904eb7f73890da3ff18f6fb /src/RemoteControl.h | |
parent | 3f179d73b72c2fcb496e5bada79a782f5d722ffe (diff) | |
download | dabmux-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.h | 3 |
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); } |