class Poco::Base64Decoder
Overview
This istream base64-decodes all data read from the istream connected to it. More…
#include <Base64Decoder.h> class Base64Decoder: public Poco::Base64DecoderIOS, public istream { public: // construction Base64Decoder(std::istream& istr); };
Inherited Members
public: // methods Base64DecoderBuf* rdbuf(); protected: // fields Base64DecoderBuf _buf;
Detailed Documentation
This istream base64-decodes all data read from the istream connected to it.
Note: For performance reasons, the characters are read directly from the given istream’s underlying streambuf, so the state of the istream will not reflect that of its streambuf.