Bv2.1 7.2.3: Check that subtitle <StartTime> exists and is 0.
[libdcp.git] / src / reel_stereo_picture_asset.h
index c7223495bbc48d9fd2fb56efde09250cfe0e32c0..b343626fbcadff895efde8b256233a511becc5ae 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2014-2015 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2014-2019 Carl Hetherington <cth@carlh.net>
 
     This file is part of libdcp.
 
@@ -51,17 +51,16 @@ class StereoPictureAsset;
 class ReelStereoPictureAsset : public ReelPictureAsset
 {
 public:
-       ReelStereoPictureAsset ();
-       ReelStereoPictureAsset (boost::shared_ptr<StereoPictureAsset> content, int64_t entry_point);
-       explicit ReelStereoPictureAsset (boost::shared_ptr<const cxml::Node>);
+       ReelStereoPictureAsset (std::shared_ptr<StereoPictureAsset> content, int64_t entry_point);
+       explicit ReelStereoPictureAsset (std::shared_ptr<const cxml::Node>);
 
        /** @return the StereoPictureAsset that this object refers to */
-       boost::shared_ptr<const StereoPictureAsset> stereo_asset () const {
+       std::shared_ptr<const StereoPictureAsset> stereo_asset () const {
                return asset_of_type<const StereoPictureAsset> ();
        }
 
        /** @return the StereoPictureAsset that this object refers to */
-       boost::shared_ptr<StereoPictureAsset> stereo_asset () {
+       std::shared_ptr<StereoPictureAsset> stereo_asset () {
                return asset_of_type<StereoPictureAsset> ();
        }