|
Aegis
4.25.D505
|
#include <base64.h>
Public Member Functions | |
| virtual | ~output_filter_base64 () |
Static Public Member Functions | |
| static pointer | create (const output::pointer &deeper) |
Protected Member Functions | |
| nstring | type_name (void) const |
| long | ftell_inner (void) const |
| void | write_inner (const void *data, size_t length) |
| void | end_of_line_inner (void) |
Private Member Functions | |
| output_filter_base64 (const output::pointer &deeper) | |
| output_filter_base64 () | |
| output_filter_base64 (const output_filter_base64 &) | |
| output_filter_base64 | operator= (const output_filter_base64 &) |
Private Attributes | |
| unsigned int | residual_value |
| int | residual_bits |
| int | output_column |
| long | pos |
| bool | bol |
The output_filter_base64 class is used to represent the processing necessary to MIME BASE64 encode an output stream.
| virtual output_filter_base64::~output_filter_base64 | ( | ) | [virtual] |
The destructor.
| output_filter_base64::output_filter_base64 | ( | const output::pointer & | deeper | ) | [private] |
The constructor. It's private on purpose, use the "create" class method instead.
| deeper | The deeper output, the place this filter writes the filtered output. |
| output_filter_base64::output_filter_base64 | ( | ) | [private] |
The default constructor. Do not use.
| output_filter_base64::output_filter_base64 | ( | const output_filter_base64 & | ) | [private] |
The copy constructor. Do not use.
| static pointer output_filter_base64::create | ( | const output::pointer & | deeper | ) | [static] |
The create class method is used to create new dynamically allocated instances of this class.
| deeper | The deeper output, the place this filter writes the filtered output. |
| void output_filter_base64::end_of_line_inner | ( | void | ) | [protected, virtual] |
The end_of_line_inner method is used to ensure that the current output position is at the beginning of a line, without taking the buffering into account.
Reimplemented from output_filter.
| long output_filter_base64::ftell_inner | ( | void | ) | const [protected, virtual] |
The ftell_inner method is used to determine the current file position, without taking the buffering into account.
Reimplemented from output_filter.
| output_filter_base64 output_filter_base64::operator= | ( | const output_filter_base64 & | ) | [private] |
The assignment operator. Do not use.
| nstring output_filter_base64::type_name | ( | void | ) | const [protected, virtual] |
The type_name method is used to determine the name of this output device or file or type.
Reimplemented from output_filter.
| void output_filter_base64::write_inner | ( | const void * | data, |
| size_t | length | ||
| ) | [protected, virtual] |
The write_inner method is used write data to the output, without taking the buffering into account.
Reimplemented from output_filter.
bool output_filter_base64::bol [private] |
int output_filter_base64::output_column [private] |
long output_filter_base64::pos [private] |
int output_filter_base64::residual_bits [private] |
unsigned int output_filter_base64::residual_value [private] |
1.7.6.1