From d39880eef211a296fa8ef4712cdef5945d08527c Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 20 Dec 2020 14:14:07 +0100 Subject: std::shared_ptr --- src/cpl.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/cpl.h') diff --git a/src/cpl.h b/src/cpl.h index c1f505df..316a5504 100644 --- a/src/cpl.h +++ b/src/cpl.h @@ -49,7 +49,7 @@ #include #include #include -#include +#include #include #include @@ -74,32 +74,32 @@ public: explicit CPL (boost::filesystem::path file); bool equals ( - boost::shared_ptr other, + std::shared_ptr other, EqualityOptions options, NoteHandler note ) const; - void add (boost::shared_ptr reel); + void add (std::shared_ptr reel); void add (DecryptedKDM const &); /** @return the reels in this CPL */ - std::list > reels () const { + std::list > reels () const { return _reels; } /** @return the ReelMXFs in this CPL in all reels */ - std::list > reel_mxfs () const; - std::list > reel_mxfs (); + std::list > reel_mxfs () const; + std::list > reel_mxfs (); bool encrypted () const; void write_xml ( boost::filesystem::path file, Standard standard, - boost::shared_ptr + std::shared_ptr ) const; - void resolve_refs (std::list >); + void resolve_refs (std::list >); int64_t duration () const; @@ -311,7 +311,7 @@ private: /* See note for _release_territory above */ std::vector _additional_subtitle_languages; - std::list > _reels; + std::list > _reels; /** Standard of CPL that was read in */ boost::optional _standard; -- cgit v1.2.3