From dd9be86db6cde0afa5da0d1d1ac43b42e05dca26 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 4 Jan 2021 21:16:53 +0100 Subject: std::shared_ptr --- src/lib/image_decoder.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/lib/image_decoder.h') diff --git a/src/lib/image_decoder.h b/src/lib/image_decoder.h index eeec779ba..d575f9021 100644 --- a/src/lib/image_decoder.h +++ b/src/lib/image_decoder.h @@ -27,9 +27,9 @@ class ImageProxy; class ImageDecoder : public Decoder { public: - ImageDecoder (boost::shared_ptr film, boost::shared_ptr c); + ImageDecoder (std::shared_ptr film, std::shared_ptr c); - boost::shared_ptr content () { + std::shared_ptr content () { return _image_content; } @@ -38,7 +38,7 @@ public: private: - boost::shared_ptr _image_content; - boost::shared_ptr _image; + std::shared_ptr _image_content; + std::shared_ptr _image; Frame _frame_video_position; }; -- cgit v1.2.3