diff options
Diffstat (limited to 'src/lib/decoder_part.h')
| -rw-r--r-- | src/lib/decoder_part.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/lib/decoder_part.h b/src/lib/decoder_part.h index 4b309a668..1a8794527 100644 --- a/src/lib/decoder_part.h +++ b/src/lib/decoder_part.h @@ -25,11 +25,12 @@ #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; |
