Question

I try to make a module of compression/decompression and then use istringstream for compression and ostringstream for decompression.

My problem is that after filling my istringstream with compression datas, I'm not able to convert this stream into an ostringstream. I try :

iss.rdbuf(oss.rdbuf());

as the in and out type match but it doesn't work.

Do you have any idea ?

Thank in advance.

Was it helpful?

Solution

stringstream::rdbuf doesn't have an overload that takes a parameter. It does, however, inherit the base class version which does have this property:

iss.basic_ios<char>::rdbuf(oss.rdbuf());

The fact that you couldn't use it originally is because the derived class version hides it.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top