diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-01 17:18:24 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-08-01 17:18:24 +0200 |
commit | 31edd6a85f52c855d54594dc9f8ceda694d3ebea (patch) | |
tree | 60ad2c84d28a495082e0b083e072a934bc142634 /src/FrameMultiplexer.h | |
parent | 1c25545bb03ea074b5871be3234bf0d1be20a6a3 (diff) | |
download | dabmod-31edd6a85f52c855d54594dc9f8ceda694d3ebea.tar.gz dabmod-31edd6a85f52c855d54594dc9f8ceda694d3ebea.tar.bz2 dabmod-31edd6a85f52c855d54594dc9f8ceda694d3ebea.zip |
Switch to C++11, remove boost::shared_ptr
Diffstat (limited to 'src/FrameMultiplexer.h')
-rw-r--r-- | src/FrameMultiplexer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/FrameMultiplexer.h b/src/FrameMultiplexer.h index ba571f6..b32a0d7 100644 --- a/src/FrameMultiplexer.h +++ b/src/FrameMultiplexer.h @@ -29,7 +29,7 @@ #include "ModMux.h" #include "SubchannelSource.h" -#include <boost/shared_ptr.hpp> +#include <memory> #include <sys/types.h> @@ -38,7 +38,7 @@ class FrameMultiplexer : public ModMux { public: FrameMultiplexer(size_t frameSize, - const std::vector<boost::shared_ptr<SubchannelSource> >* subchannels); + const std::vector<std::shared_ptr<SubchannelSource> >* subchannels); virtual ~FrameMultiplexer(); FrameMultiplexer(const FrameMultiplexer&); FrameMultiplexer& operator=(const FrameMultiplexer&); @@ -49,7 +49,7 @@ public: protected: size_t d_frameSize; - const std::vector<boost::shared_ptr<SubchannelSource> >* mySubchannels; + const std::vector<std::shared_ptr<SubchannelSource> >* mySubchannels; }; #endif // FRAME_MULTIPLEXER_H |