VTK
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes
vtkBase64InputStream Class Reference

Reads base64-encoded input from a stream. More...

#include <vtkBase64InputStream.h>

Inheritance diagram for vtkBase64InputStream:
Inheritance graph
[legend]
Collaboration diagram for vtkBase64InputStream:
Collaboration graph
[legend]

List of all members.

Public Types

typedef vtkInputStream Superclass

Public Member Functions

virtual int IsA (const char *type)
vtkBase64InputStreamNewInstance () 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 vtkBase64InputStreamSafeDownCast (vtkObjectBase *o)
static vtkBase64InputStreamNew ()

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
int DecodeTriplet (unsigned char &c0, unsigned char &c1, unsigned char &c2)

Protected Attributes

int BufferLength
unsigned char Buffer [2]
void EndReading ()
 vtkBase64InputStream ()
 ~vtkBase64InputStream ()

Detailed Description

Reads base64-encoded input from a stream.

vtkBase64InputStream implements base64 decoding with the vtkInputStream interface.

Definition at line 28 of file vtkBase64InputStream.h.


Member Typedef Documentation

Reimplemented from vtkInputStream.

Definition at line 31 of file vtkBase64InputStream.h.


Constructor & Destructor Documentation

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.

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.


Member Function Documentation

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.

Reimplemented from vtkInputStream.

virtual vtkObjectBase* vtkBase64InputStream::NewInstanceInternal ( ) const [protected, virtual]

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.

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.

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.

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]

Member Data Documentation

Definition at line 59 of file vtkBase64InputStream.h.

unsigned char vtkBase64InputStream::Buffer[2] [protected]

Definition at line 60 of file vtkBase64InputStream.h.


The documentation for this class was generated from the following file: