#include <vtkBase64InputStream.h>
Inheritance diagram for vtkBase64InputStream:
vtkBase64InputStream implements base64 decoding with the vtkInputStream interface.
Definition at line 37 of file vtkBase64InputStream.h.
Public Types | |
typedef vtkInputStream | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
void | StartReading () |
int | Seek (unsigned long offset) |
unsigned long | Read (unsigned char *data, unsigned long length) |
void | EndReading () |
Static Public Member Functions | |
int | IsTypeOf (const char *type) |
vtkBase64InputStream * | SafeDownCast (vtkObject *o) |
vtkBase64InputStream * | New () |
Protected Member Functions | |
vtkBase64InputStream () | |
~vtkBase64InputStream () | |
int | DecodeTriplet (unsigned char &c0, unsigned char &c1, unsigned char &c2) |
Protected Attributes | |
int | BufferLength |
unsigned char | Buffer [2] |
|
Reimplemented from vtkInputStream. Definition at line 40 of file vtkBase64InputStream.h. |
|
|
|
|
|
Reimplemented from vtkInputStream. |
|
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 vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkInputStream. |
|
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 vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkInputStream. |
|
Reimplemented from vtkInputStream. |
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkInputStream. |
|
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. |
|
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. |
|
Seek to the given offset in the input data. Returns 1 for success, 0 for failure. Reimplemented from vtkInputStream. |
|
Read input data of the given length. Returns amount actually read. Reimplemented from vtkInputStream. |
|
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. |
|
|
|
Definition at line 66 of file vtkBase64InputStream.h. |
|
Definition at line 67 of file vtkBase64InputStream.h. |