Another shortcut.
[dcpomatic.git] / src / lib / content.h
index 5d8100e5db825e021dfd1ca7a09b6909ce830ef6..596a0a905c95217d4daaf8ba116b8a6f518c6555 100644 (file)
@@ -52,10 +52,14 @@ public:
        Content (boost::shared_ptr<const Film>, Time);
        Content (boost::shared_ptr<const Film>, boost::filesystem::path);
        Content (boost::shared_ptr<const Film>, boost::shared_ptr<const cxml::Node>);
+       Content (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >);
        virtual ~Content () {}
        
        virtual void examine (boost::shared_ptr<Job>);
        virtual std::string summary () const = 0;
+       /** @return Technical details of this content; these are written to logs to
+        *  help with debugging.
+        */
        virtual std::string technical_summary () const;
        virtual std::string information () const = 0;
        virtual void as_xml (xmlpp::Node *) const;
@@ -65,10 +69,12 @@ public:
        boost::shared_ptr<Content> clone () const;
 
        void set_path (boost::filesystem::path);
-       
-       boost::filesystem::path path () const {
+
+       std::string path_summary () const;
+
+       std::vector<boost::filesystem::path> paths () const {
                boost::mutex::scoped_lock lm (_mutex);
-               return _paths.front ();
+               return _paths;
        }
 
        size_t number_of_paths () const {
@@ -81,7 +87,7 @@ public:
                return _paths[i];
        }
        
-       bool path_valid () const;
+       bool paths_valid () const;
 
        /** @return MD5 digest of the content's file(s) */
        std::string digest () const {