X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fimage_content.h;h=81396c63ba19a95683c856d2441d17f62db80306;hp=970a68d661271be3b567d714ec880cc55111527a;hb=ac34066d5e448d1984d11a180be74e31b6e13b5c;hpb=c4403784febdbdd42e9c32e67fadb147f11fe566 diff --git a/src/lib/image_content.h b/src/lib/image_content.h index 970a68d66..81396c63b 100644 --- a/src/lib/image_content.h +++ b/src/lib/image_content.h @@ -29,19 +29,19 @@ public: ImageContent (boost::filesystem::path); ImageContent (cxml::ConstNodePtr, int); - boost::shared_ptr shared_from_this () { - return boost::dynamic_pointer_cast (Content::shared_from_this ()); + std::shared_ptr shared_from_this () { + return std::dynamic_pointer_cast (Content::shared_from_this ()); }; - boost::shared_ptr shared_from_this () const { - return boost::dynamic_pointer_cast (Content::shared_from_this ()); + std::shared_ptr shared_from_this () const { + return std::dynamic_pointer_cast (Content::shared_from_this ()); }; - void examine (boost::shared_ptr film, boost::shared_ptr); + void examine (std::shared_ptr film, std::shared_ptr); std::string summary () const; std::string technical_summary () const; void as_xml (xmlpp::Node *, bool with_paths) const; - dcpomatic::DCPTime full_length (boost::shared_ptr film) const; + dcpomatic::DCPTime full_length (std::shared_ptr film) const; dcpomatic::DCPTime approximate_length () const; std::string identifier () const; @@ -51,7 +51,7 @@ public: bool still () const; private: - void add_properties (boost::shared_ptr film, std::list& p) const; + void add_properties (std::shared_ptr film, std::list& p) const; boost::optional _path_to_scan; };