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/fig/FIGCarousel.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/fig/FIGCarousel.h')
-rw-r--r-- | src/fig/FIGCarousel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fig/FIGCarousel.h b/src/fig/FIGCarousel.h index bb6b546..738a302 100644 --- a/src/fig/FIGCarousel.h +++ b/src/fig/FIGCarousel.h @@ -34,7 +34,7 @@ #include "fig/FIG1.h" #include <list> #include <map> -#include <boost/shared_ptr.hpp> +#include <memory> #include "MuxElements.h" namespace FIC { @@ -58,7 +58,7 @@ enum class FIBAllocation { class FIGCarousel { public: - FIGCarousel(boost::shared_ptr<dabEnsemble> ensemble); + FIGCarousel(std::shared_ptr<dabEnsemble> ensemble); void update(unsigned long currentFrame, time_t dabTime); |