33class xz_streambuf :
public std::streambuf {
35 explicit xz_streambuf(
const std::string& path);
37 ~xz_streambuf()
override;
40 int_type underflow()
override;
44 lzma_stream strm_ = LZMA_STREAM_INIT;
45 std::vector<char> buffer_;
46 std::vector<char> inbuf_;