In the example in path http://pocoproject.org/docs/Poco.Inflat ... tream.html is a type
- Code: Select all
std::ifstream istr("data.gz", std::ios::binary);
InflatingInputStream inflater(istr, InflatingStreamBuf::STREAM_GZIP);
std::string data;
istr >> data;
Typo:
istr >> data;
Сorrectly:
inflater >> data;





