#include <vtkOutputStream.h>
Inheritance diagram for vtkOutputStream:
vtkOutputStream provides a VTK-style interface wrapping around a standard output stream. The access methods are virtual so that subclasses can transparently provide encoding of the output. Data lengths for Write calls refer to the length of the data in memory. The actual length in the stream may differ for subclasses that implement an encoding scheme.
Definition at line 41 of file vtkOutputStream.h.
Public Types | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual int | StartWriting () |
virtual int | EndWriting () |
virtual void | SetStream (ostream *) |
virtual ostream * | GetStream () |
virtual int | Write (const unsigned char *data, unsigned long length) |
int | Write (const char *data, unsigned long length) |
Static Public Member Functions | |
int | IsTypeOf (const char *type) |
vtkOutputStream * | SafeDownCast (vtkObject *o) |
vtkOutputStream * | New () |
Protected Member Functions | |
vtkOutputStream () | |
~vtkOutputStream () | |
Protected Attributes | |
ostream * | Stream |
|
Reimplemented from vtkObject. Reimplemented in vtkBase64OutputStream. Definition at line 44 of file vtkOutputStream.h. |
|
|
|
|
|
Reimplemented from vtkObject. Reimplemented in vtkBase64OutputStream. |
|
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 vtkObject. Reimplemented in vtkBase64OutputStream. |
|
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 vtkObject. Reimplemented in vtkBase64OutputStream. |
|
Reimplemented from vtkObject. Reimplemented in vtkBase64OutputStream. |
|
Create an object with Debug turned off, modified time initialized to zero, and reference counting on. Reimplemented from vtkObject. Reimplemented in vtkBase64OutputStream. |
|
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 vtkObject. Reimplemented in vtkBase64OutputStream. |
|
Get/Set the real output stream. |
|
Get/Set the real output stream. |
|
Called after the stream position has been set by the caller, but before any Write calls. The stream position should not be adjusted by the caller until after an EndWriting call. Reimplemented in vtkBase64OutputStream. |
|
Write output data of the given length. Reimplemented in vtkBase64OutputStream. |
|
Write output data of the given length. |
|
Called after all desired calls to Write have been made. After this call, the caller is free to change the position of the stream. Additional writes should not be done until after another call to StartWriting. Reimplemented in vtkBase64OutputStream. |
|
Definition at line 78 of file vtkOutputStream.h. |