Tidying.
[libdcp.git] / src / reel_picture_asset.h
index 88729148c6fa9713e6447be1f9102ae333d12942..12c23717d032a52af70887ceaf097bfb69a77097 100644 (file)
     files in the program, then also delete it here.
 */
 
+
 /** @file  src/reel_picture_asset.h
- *  @brief ReelPictureAsset class.
+ *  @brief ReelPictureAsset class
  */
 
+
 #ifndef LIBDCP_REEL_PICTURE_ASSET_H
 #define LIBDCP_REEL_PICTURE_ASSET_H
 
+
 #include "reel_mxf.h"
 #include "reel_asset.h"
 #include "picture_asset.h"
 
+
 namespace dcp {
 
+
 /** @class ReelPictureAsset
- *  @brief Part of a Reel's description which refers to a picture asset.
+ *  @brief Part of a Reel's description which refers to a picture asset
  */
 class ReelPictureAsset : public ReelAsset, public ReelMXF
 {
 public:
-       ReelPictureAsset (boost::shared_ptr<PictureAsset> asset, int64_t entry_point);
-       explicit ReelPictureAsset (boost::shared_ptr<const cxml::Node>);
+       ReelPictureAsset (std::shared_ptr<PictureAsset> asset, int64_t entry_point);
+       explicit ReelPictureAsset (std::shared_ptr<const cxml::Node>);
 
        virtual xmlpp::Node* write_to_cpl (xmlpp::Node* node, Standard standard) const;
-       bool equals (boost::shared_ptr<const ReelPictureAsset>, EqualityOptions, NoteHandler) const;
+       bool equals (std::shared_ptr<const ReelPictureAsset>, EqualityOptions, NoteHandler) const;
 
        /** @return the PictureAsset that this object refers to */
-       boost::shared_ptr<const PictureAsset> asset () const {
+       std::shared_ptr<const PictureAsset> asset () const {
                return asset_of_type<const PictureAsset> ();
        }
 
        /** @return the PictureAsset that this object refers to */
-       boost::shared_ptr<PictureAsset> asset () {
+       std::shared_ptr<PictureAsset> asset () {
                return asset_of_type<PictureAsset> ();
        }
 
@@ -89,6 +94,8 @@ private:
        Fraction _screen_aspect_ratio;
 };
 
+
 }
 
+
 #endif