diff options
Diffstat (limited to 'src/reel_picture_asset.h')
| -rw-r--r-- | src/reel_picture_asset.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/reel_picture_asset.h b/src/reel_picture_asset.h index 5a925e24..e79c4455 100644 --- a/src/reel_picture_asset.h +++ b/src/reel_picture_asset.h @@ -57,19 +57,19 @@ public: 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 (std::shared_ptr<const ReelPictureAsset>, EqualityOptions, NoteHandler) const; - /** @return the PictureAsset that this object refers to */ std::shared_ptr<const PictureAsset> asset () const { - return asset_of_type<const PictureAsset> (); + return asset_of_type<const PictureAsset>(); } /** @return the PictureAsset that this object refers to */ std::shared_ptr<PictureAsset> asset () { - return asset_of_type<PictureAsset> (); + return asset_of_type<PictureAsset>(); } + virtual xmlpp::Node* write_to_cpl (xmlpp::Node* node, Standard standard) const override; + bool equals (std::shared_ptr<const ReelPictureAsset>, EqualityOptions, NoteHandler) const; + /** @return picture frame rate */ Fraction frame_rate () const { return _frame_rate; |
