std::shared_ptr
[dcpomatic.git] / src / lib / content_video.h
index 8b3d984df9f808db12448ad93e04fa7e1dafdb9d..ee169b6c556c93b93a7636f183314e56830ed17d 100644 (file)
@@ -37,14 +37,14 @@ public:
                , part (PART_WHOLE)
        {}
 
-       ContentVideo (boost::shared_ptr<const ImageProxy> i, Frame f, Eyes e, Part p)
+       ContentVideo (std::shared_ptr<const ImageProxy> i, Frame f, Eyes e, Part p)
                : image (i)
                , frame (f)
                , eyes (e)
                , part (p)
        {}
 
-       boost::shared_ptr<const ImageProxy> image;
+       std::shared_ptr<const ImageProxy> image;
        Frame frame;
        Eyes eyes;
        Part part;