Hi,

I have a text file that is compressed with bzip2 and im trying to read with it the iostream lib and parse it with iostream::operator>>. Unfortunately this doesn't work so I wanted to ask if this is an unsupported scenario or if I'm doing something wrong.

filtering_istream in;
in.push(bzip2_decompressor());
in.push(file_source("text.bz2"));

in >> lineId; // std::string lineId


Regards,
Thomas