summaryrefslogtreecommitdiff
path: root/src/lib/decoder_part.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-11-20 23:58:51 +0000
committerCarl Hetherington <cth@carlh.net>2016-11-20 23:58:51 +0000
commit878e19aabf2278828a3c9b518e0804b2cef0c01e (patch)
tree1929355377edc46d25e6f9635d259ae7092ac3ef /src/lib/decoder_part.h
parent4337694dfd488e88f56b63898ad35ce8ce9bb3c3 (diff)
Some more decode logging.
Diffstat (limited to 'src/lib/decoder_part.h')
-rw-r--r--src/lib/decoder_part.h4
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;