diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-11-20 23:58:51 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-11-20 23:58:51 +0000 |
| commit | 878e19aabf2278828a3c9b518e0804b2cef0c01e (patch) | |
| tree | 1929355377edc46d25e6f9635d259ae7092ac3ef /src/lib/decoder_part.h | |
| parent | 4337694dfd488e88f56b63898ad35ce8ce9bb3c3 (diff) | |
Some more decode logging.
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; |
