Add a load of explicit keywords.
[dcpomatic.git] / src / lib / video_content.h
index 19ea113f76fed45232cf3e8e06ffc2a66beb8d2c..774210c13ff191eb37521b6be328a110d79035d1 100644 (file)
@@ -51,13 +51,13 @@ public:
 class VideoContent : public ContentPart, public boost::enable_shared_from_this<VideoContent>
 {
 public:
-       VideoContent (Content* parent);
+       explicit VideoContent (Content* parent);
        VideoContent (Content* parent, std::vector<boost::shared_ptr<Content> >);
 
        void as_xml (xmlpp::Node *) const;
        std::string technical_summary () const;
        std::string identifier () const;
-       void use_template (boost::shared_ptr<const VideoContent> c);
+       void take_settings_from (boost::shared_ptr<const VideoContent> c);
 
        Frame length () const {
                boost::mutex::scoped_lock lm (_mutex);
@@ -169,6 +169,7 @@ public:
        void add_properties (std::list<UserProperty> &) const;
 
        void modify_position (DCPTime& pos) const;
+       void modify_trim_start (ContentTime& pos) const;
 
        static boost::shared_ptr<VideoContent> from_xml (Content* parent, cxml::ConstNodePtr, int);