VTK
|
#include <vtkDataObjectTypes.h>
Public Types | |
typedef vtkObject | Superclass |
Public Member Functions | |
virtual int | IsA (const char *type) |
vtkDataObjectTypes * | NewInstance () const |
void | PrintSelf (ostream &os, vtkIndent indent) |
Static Public Member Functions | |
static vtkDataObjectTypes * | New () |
static int | IsTypeOf (const char *type) |
static vtkDataObjectTypes * | SafeDownCast (vtkObjectBase *o) |
static const char * | GetClassNameFromTypeId (int typeId) |
static int | GetTypeIdFromClassName (const char *classname) |
static vtkDataObject * | NewDataObject (const char *classname) |
static vtkDataObject * | NewDataObject (int typeId) |
Protected Member Functions | |
virtual vtkObjectBase * | NewInstanceInternal () const |
vtkDataObjectTypes () | |
~vtkDataObjectTypes () | |
Static Protected Member Functions | |
static int | Validate () |
Definition at line 34 of file vtkDataObjectTypes.h.
Reimplemented from vtkObject.
Definition at line 39 of file vtkDataObjectTypes.h.
vtkDataObjectTypes::vtkDataObjectTypes | ( | ) | [inline, protected] |
Definition at line 57 of file vtkDataObjectTypes.h.
vtkDataObjectTypes::~vtkDataObjectTypes | ( | ) | [inline, protected] |
Definition at line 58 of file vtkDataObjectTypes.h.
static vtkDataObjectTypes* vtkDataObjectTypes::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject.
static int vtkDataObjectTypes::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 vtkObject.
virtual int vtkDataObjectTypes::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 vtkObject.
static vtkDataObjectTypes* vtkDataObjectTypes::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkObject.
virtual vtkObjectBase* vtkDataObjectTypes::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkObject.
Reimplemented from vtkObject.
void vtkDataObjectTypes::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
static const char* vtkDataObjectTypes::GetClassNameFromTypeId | ( | int | typeId | ) | [static] |
Given an int (as defined in vtkType.h) identifier for a class return it's classname.
static int vtkDataObjectTypes::GetTypeIdFromClassName | ( | const char * | classname | ) | [static] |
Given a data object classname, return it's int identified (as defined in vtkType.h)
static vtkDataObject* vtkDataObjectTypes::NewDataObject | ( | const char * | classname | ) | [static] |
Create (New) and return a data object of the given classname.
static vtkDataObject* vtkDataObjectTypes::NewDataObject | ( | int | typeId | ) | [static] |
Create (New) and return a data object of the given type id.
static int vtkDataObjectTypes::Validate | ( | ) | [static, protected] |
Method used to validate data object types, for testing purposes