VTK
|
Reads base64-encoded input from a stream. More...
#include <vtkBase64InputStream.h>
Public Types | |
typedef vtkInputStream | Superclass |
Public Member Functions | |
virtual int | IsA (const char *type) |
vtkBase64InputStream * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | StartReading () |
int | Seek (vtkTypeInt64 offset) |
size_t | Read (void *data, size_t length) |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkBase64InputStream * | SafeDownCast (vtkObjectBase *o) |
static vtkBase64InputStream * | New () |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
int | DecodeTriplet (unsigned char &c0, unsigned char &c1, unsigned char &c2) |
Protected Attributes | |
int | BufferLength |
unsigned char | Buffer [2] |
void | EndReading () |
vtkBase64InputStream () | |
~vtkBase64InputStream () |
Reads base64-encoded input from a stream.
vtkBase64InputStream implements base64 decoding with the vtkInputStream interface.
Definition at line 28 of file vtkBase64InputStream.h.
Reimplemented from vtkInputStream.
Definition at line 31 of file vtkBase64InputStream.h.
vtkBase64InputStream::vtkBase64InputStream | ( | ) | [protected] |
Called after all desired calls to Seek and Read have been made. After this call, the caller is free to change the position of the stream. Additional reads should not be done until after another call to StartReading.
vtkBase64InputStream::~vtkBase64InputStream | ( | ) | [protected] |
Called after all desired calls to Seek and Read have been made. After this call, the caller is free to change the position of the stream. Additional reads should not be done until after another call to StartReading.
static int vtkBase64InputStream::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkInputStream.
virtual int vtkBase64InputStream::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkInputStream.
static vtkBase64InputStream* vtkBase64InputStream::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkInputStream.
virtual vtkObjectBase* vtkBase64InputStream::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkInputStream.
Reimplemented from vtkInputStream.
static vtkBase64InputStream* vtkBase64InputStream::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkInputStream.
void vtkBase64InputStream::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkInputStream.
void vtkBase64InputStream::StartReading | ( | ) | [virtual] |
Called after the stream position has been set by the caller, but before any Seek or Read calls. The stream position should not be adjusted by the caller until after an EndReading call.
Reimplemented from vtkInputStream.
int vtkBase64InputStream::Seek | ( | vtkTypeInt64 | offset | ) | [virtual] |
Seek to the given offset in the input data. Returns 1 for success, 0 for failure.
Reimplemented from vtkInputStream.
size_t vtkBase64InputStream::Read | ( | void * | data, |
size_t | length | ||
) | [virtual] |
Read input data of the given length. Returns amount actually read.
Reimplemented from vtkInputStream.
void vtkBase64InputStream::EndReading | ( | ) | [virtual] |
Called after all desired calls to Seek and Read have been made. After this call, the caller is free to change the position of the stream. Additional reads should not be done until after another call to StartReading.
Reimplemented from vtkInputStream.
int vtkBase64InputStream::DecodeTriplet | ( | unsigned char & | c0, |
unsigned char & | c1, | ||
unsigned char & | c2 | ||
) | [protected] |
int vtkBase64InputStream::BufferLength [protected] |
Definition at line 59 of file vtkBase64InputStream.h.
unsigned char vtkBase64InputStream::Buffer[2] [protected] |
Definition at line 60 of file vtkBase64InputStream.h.