FBB::IQuotedPrintableStream(3bobcat)

QuotedPrintable encoding/decoding std::istream
(libbobcat-dev_6.02.02)

2005-2022

NAME

FBB::IQuotedPrintableStream - Std::istream performing quoted-printable encoding and decoding

SYNOPSIS

#include <bobcat/iquotedprintablestream>
Linking option: -lbobcat

DESCRIPTION

FBB::IQuotedPrintableStream objects may be used to quoted-printable encode or decode information that is available on a separate std::istream.

The class IQuotedPrintableStream is a class template, using a FBB::CodeType template non-type parameter. Objects of the class FBB::IQuotedPrintableStream<FBB::ENCODE> encode the information they receive, objects of the class FBB::IQuotedPrintableStream<FBB::DECODE> decode the information they receive.

NAMESPACE

FBB
All constructors, members, operators and manipulators, mentioned in this man-page, are defined in the namespace FBB.

INHERITS FROM

FBB::IQuotedPrintableBuf (private),
std::istream

CONSTRUCTORS

Copy and move constructors (and assignment operators) are not available.

INHERITED MEMBERS

Since the class uses public derivation from std::istream, all members of this class can be used.

EXAMPLE

#include <iostream>
#include <bobcat/iquotedprintablestream>

using namespace std;
using namespace FBB;

int main()
{
    IQuotedPrintableStream<ENCODE> in(cin);

    cout << in.rdbuf();         // quoted printable encode the info on
                                // cin.
}

See also the example in the iquotedprintablebuf(3bobcat) man-page.

FILES

bobcat/iquoted printablestream - defines the class interface

SEE ALSO

bobcat(7), iquotedprintablebuf(3bobcat)

BUGS

None Reported.

BOBCAT PROJECT FILES

BOBCAT

Bobcat is an acronym of `Brokken's Own Base Classes And Templates'.

COPYRIGHT

This is free software, distributed under the terms of the GNU General Public License (GPL).

AUTHOR

Frank B. Brokken (f.b.brokken@rug.nl).