diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-04-13 23:50:28 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-04-13 23:50:28 +0200 |
| commit | 4bd57fbbac67ac04ec47a9765b9f278aa1691851 (patch) | |
| tree | 55a607e6ac16fa52f69522312f2464443fac5aeb /src/reel_picture_asset.h | |
| parent | 488e3d1bd5e6b17d49f6db4df14c64f4b64db89b (diff) | |
Tidying a few things up.
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; |
