diff options
Diffstat (limited to 'src/lib/dcp_content.h')
| -rw-r--r-- | src/lib/dcp_content.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/dcp_content.h b/src/lib/dcp_content.h index 0f59bdf43..be12ba534 100644 --- a/src/lib/dcp_content.h +++ b/src/lib/dcp_content.h @@ -52,6 +52,10 @@ public: return boost::dynamic_pointer_cast<DCPContent> (Content::shared_from_this ()); } + boost::shared_ptr<const DCPContent> shared_from_this () const { + return boost::dynamic_pointer_cast<const DCPContent> (Content::shared_from_this ()); + } + DCPTime full_length () const; void examine (boost::shared_ptr<Job>); @@ -61,6 +65,7 @@ public: std::string identifier () const; void set_default_colour_conversion (); + std::list<DCPTime> reel_split_points () const; /* SubtitleContent */ |
