X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Freel_picture_asset.h;h=a1f926288533e6582900cb7acd646ddcf93d88a7;hb=302a059052e2e55345e91b5300e2389b87bd7f0a;hp=88729148c6fa9713e6447be1f9102ae333d12942;hpb=4946acfd735321e7f0c29ea4b6e371bc9e90a7f6;p=libdcp.git diff --git a/src/reel_picture_asset.h b/src/reel_picture_asset.h index 88729148..a1f92628 100644 --- a/src/reel_picture_asset.h +++ b/src/reel_picture_asset.h @@ -50,19 +50,19 @@ namespace dcp { class ReelPictureAsset : public ReelAsset, public ReelMXF { public: - ReelPictureAsset (boost::shared_ptr asset, int64_t entry_point); - explicit ReelPictureAsset (boost::shared_ptr); + ReelPictureAsset (std::shared_ptr asset, int64_t entry_point); + explicit ReelPictureAsset (std::shared_ptr); virtual xmlpp::Node* write_to_cpl (xmlpp::Node* node, Standard standard) const; - bool equals (boost::shared_ptr, EqualityOptions, NoteHandler) const; + bool equals (std::shared_ptr, EqualityOptions, NoteHandler) const; /** @return the PictureAsset that this object refers to */ - boost::shared_ptr asset () const { + std::shared_ptr asset () const { return asset_of_type (); } /** @return the PictureAsset that this object refers to */ - boost::shared_ptr asset () { + std::shared_ptr asset () { return asset_of_type (); }