C++11 tidying.
[dcpomatic.git] / src / lib / image_examiner.h
index ca8ecf9c8c7a013dfbd91557c5357faa68997175..cad8683a19b3e23148668f1a97b6eb5bf82ccaf6 100644 (file)
@@ -25,7 +25,7 @@ class ImageContent;
 class ImageExaminer : public VideoExaminer
 {
 public:
-       ImageExaminer (boost::shared_ptr<const Film>, boost::shared_ptr<const ImageContent>, boost::shared_ptr<Job>);
+       ImageExaminer (std::shared_ptr<const Film>, std::shared_ptr<const ImageContent>, std::shared_ptr<Job>);
 
        bool has_video () const {
                return true;
@@ -37,12 +37,12 @@ public:
        }
        bool yuv () const;
        VideoRange range () const {
-               return VIDEO_RANGE_FULL;
+               return VideoRange::FULL;
        }
 
 private:
-       boost::weak_ptr<const Film> _film;
-       boost::shared_ptr<const ImageContent> _image_content;
+       std::weak_ptr<const Film> _film;
+       std::shared_ptr<const ImageContent> _image_content;
        boost::optional<dcp::Size> _video_size;
        Frame _video_length;
 };