X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fimage_content.h;h=81396c63ba19a95683c856d2441d17f62db80306;hb=67ff55886b1ee86d99c2ea27d10c73b85b0504b7;hp=959923a51db83e0e1c4851d9fa95a39c161a7c2d;hpb=3c414bf90d4cfcfe342c0b057b5134f72485fe32;p=dcpomatic.git diff --git a/src/lib/image_content.h b/src/lib/image_content.h index 959923a51..81396c63b 100644 --- a/src/lib/image_content.h +++ b/src/lib/image_content.h @@ -29,20 +29,20 @@ 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; - DCPTime full_length (boost::shared_ptr film) const; - DCPTime approximate_length () 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; };