/usr/include/bobcat/iquotedprintablestreambuf is in libbobcat-dev 4.08.02-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | #ifndef INCLUDED_BOBCAT_IQUOTEDPRINTABLESTREAMBUF_
#define INCLUDED_BOBCAT_IQUOTEDPRINTABLESTREAMBUF_
#include <bobcat/qpstreambufbase>
#include <bobcat/fbb>
namespace FBB
{
// generic class declaration
template <CryptType>
class IQuotedPrintableStreambuf;
// specialization when encoding (using available symbolic name ENCRYPT
// from bobcat/fbb)
template <>
class IQuotedPrintableStreambuf<ENCRYPT>: public IUO::QPStreambufBase
{
public: // 1.f
IQuotedPrintableStreambuf(std::istream &in, size_t bufSize = 1000);
};
// specialization when decoding (using available symbolic name DECRYPT
// from bobcat/fbb)
template <>
class IQuotedPrintableStreambuf<DECRYPT>: public IUO::QPStreambufBase
{
public: // 2.f
IQuotedPrintableStreambuf(std::istream &in, size_t bufSize = 1000);
};
inline IQuotedPrintableStreambuf<ENCRYPT>::IQuotedPrintableStreambuf(
std::istream &in, size_t bufSize)
:
QPStreambufBase(in, bufSize)
{
doEncode();
}
inline IQuotedPrintableStreambuf<DECRYPT>::IQuotedPrintableStreambuf(
std::istream &in, size_t bufSize)
:
QPStreambufBase(in, bufSize)
{
doDecode();
}
} // FBB
#endif
|