Some more decode logging.
[dcpomatic.git] / src / lib / decoder_part.h
index 4b309a6682bd39c767882da148032570acba6d15..1a879452703a5dd301ff86a38e253da4360fd757 100644 (file)
 #include <boost/optional.hpp>
 
 class Decoder;
+class Log;
 
 class DecoderPart
 {
 public:
-       DecoderPart (Decoder* parent);
+       DecoderPart (Decoder* parent, boost::shared_ptr<Log> log);
 
        void set_ignore () {
                _ignore = true;
@@ -51,6 +52,7 @@ public:
 
 protected:
        Decoder* _parent;
+       boost::shared_ptr<Log> _log;
 
 private:
        bool _ignore;