No-op: remove all trailing whitespace.
[dcpomatic.git] / src / lib / content.h
index 4b6153a9d17929c555ccfe750c9fe04883428d67..6ee9e59dd289fd15c0eff15258d15a9916bdc9f2 100644 (file)
@@ -69,17 +69,17 @@ public:
         *  @param job Job to use to report progress, or 0.
         */
        virtual void examine (boost::shared_ptr<Job> job);
-       
+
        /** @return Quick one-line summary of the content, as will be presented in the
         *  film editor.
         */
        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 void as_xml (xmlpp::Node *) const;
        virtual DCPTime full_length () const = 0;
        virtual std::string identifier () const;
@@ -104,7 +104,7 @@ public:
                boost::mutex::scoped_lock lm (_mutex);
                return _paths[i];
        }
-       
+
        bool paths_valid () const;
 
        /** @return Digest of the content's file(s).  Note: this is
@@ -134,7 +134,7 @@ public:
        }
 
        void set_trim_end (DCPTime);
-       
+
        DCPTime trim_end () const {
                boost::mutex::scoped_lock lm (_mutex);
                return _trim_end;
@@ -146,7 +146,7 @@ public:
        }
 
        DCPTime length_after_trim () const;
-       
+
        void set_change_signals_frequent (bool f) {
                _change_signals_frequent = f;
        }
@@ -169,7 +169,7 @@ protected:
 
        /** Paths of our data files */
        std::vector<boost::filesystem::path> _paths;
-       
+
 private:
        std::string _digest;
        DCPTime _position;