#include <vtkASCIITextCodec.h>
A virtual class interface for codecs that readers/writers can rely on
Definition at line 42 of file vtkASCIITextCodec.h.
Public Types | |
typedef vtkTextCodec | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual bool | IsValid (istream &InputStream) |
virtual vtkUnicodeString::value_type | NextUnicode (istream &inputStream) |
virtual const char * | Name () |
virtual bool | CanHandle (const char *NameString) |
virtual void | ToUnicode (istream &InputStream, vtkTextCodec::OutputIterator &output) |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkASCIITextCodec * | SafeDownCast (vtkObject *o) |
static vtkASCIITextCodec * | New () |
Protected Member Functions | |
vtkASCIITextCodec () | |
~vtkASCIITextCodec () |
vtkASCIITextCodec::vtkASCIITextCodec | ( | ) | [protected] |
vtkASCIITextCodec::~vtkASCIITextCodec | ( | ) | [protected] |
virtual const char* vtkASCIITextCodec::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkTextCodec.
static int vtkASCIITextCodec::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 vtkTextCodec.
virtual int vtkASCIITextCodec::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 vtkTextCodec.
static vtkASCIITextCodec* vtkASCIITextCodec::SafeDownCast | ( | vtkObject * | o | ) | [static] |
Reimplemented from vtkTextCodec.
static vtkASCIITextCodec* vtkASCIITextCodec::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject.
void vtkASCIITextCodec::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
The name this codec goes by - should match the string the factory will take to create it
Reimplemented from vtkTextCodec.
virtual const char* vtkASCIITextCodec::Name | ( | ) | [virtual] |
The name this codec goes by - should match the string the factory will take to create it
Reimplemented from vtkTextCodec.
virtual bool vtkASCIITextCodec::CanHandle | ( | const char * | NameString | ) | [virtual] |
The name this codec goes by - should match the string the factory will take to create it
Reimplemented from vtkTextCodec.
virtual bool vtkASCIITextCodec::IsValid | ( | istream & | InputStream | ) | [virtual] |
is the given sample valid for this codec?
Reimplemented from vtkTextCodec.
virtual void vtkASCIITextCodec::ToUnicode | ( | istream & | InputStream, | |
vtkTextCodec::OutputIterator & | output | |||
) | [virtual] |
Iterate through the sequence represented by the stream assigning the result to the output iterator. The stream will be advanced to its end so subsequent use would need to reset it.
Implements vtkTextCodec.
virtual vtkUnicodeString::value_type vtkASCIITextCodec::NextUnicode | ( | istream & | inputStream | ) | [virtual] |
Return the next code point from the sequence represented by the stream advancing the stream through however many places needed to assemble that code point
Implements vtkTextCodec.