class Poco::Net::QuotedPrintableDecoder

Overview

This istream decodes all quoted-printable (see RFC 2045) encoded data read from the istream connected to it. More…

#include <QuotedPrintableDecoder.h>

class QuotedPrintableDecoder:
    public Poco::Net::QuotedPrintableDecoderIOS,
    public istream
{
public:
    // construction

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

Inherited Members

public:
    // methods

    QuotedPrintableDecoderBuf*
    rdbuf();

protected:
    // fields

    QuotedPrintableDecoderBuf _buf;

Detailed Documentation

This istream decodes all quoted-printable (see RFC 2045) encoded 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.