#ifndef XCODEC_XCODEC_DECODER_H #define XCODEC_XCODEC_DECODER_H #include #include class XCodecCache; class XCodecDecoder { LogHandle log_; XCodecCache *cache_; XCodecWindow window_; public: XCodecDecoder(XCodecCache *); ~XCodecDecoder(); bool decode(Buffer *, Buffer *, std::set&); }; #endif /* !XCODEC_XCODEC_DECODER_H */