class Poco::Base32Decoder

Overview

This istream base32-decodes all data read from the istream connected to it. More…

#include <Base32Decoder.h>

class Base32Decoder:
    public Poco::Base32DecoderIOS,
    public istream
{
public:
    // construction

    Base32Decoder(std::istream& istr);
};

Inherited Members

public:
    // methods

    Base32DecoderBuf*
    rdbuf();

protected:
    // fields

    Base32DecoderBuf _buf;

Detailed Documentation

This istream base32-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.