VTK  9.2.6
vtkDataObjectTypes.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkDataObjectTypes.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
136 #ifndef vtkDataObjectTypes_h
137 #define vtkDataObjectTypes_h
138 
139 #include "vtkCommonDataModelModule.h" // For export macro
140 #include "vtkObject.h"
141 
142 class vtkDataObject;
143 
144 class VTKCOMMONDATAMODEL_EXPORT vtkDataObjectTypes : public vtkObject
145 {
146 public:
148 
150  void PrintSelf(ostream& os, vtkIndent indent) override;
151 
156  static const char* GetClassNameFromTypeId(int typeId);
157 
162  static int GetTypeIdFromClassName(const char* classname);
163 
167  static vtkDataObject* NewDataObject(const char* classname);
168 
172  static vtkDataObject* NewDataObject(int typeId);
173 
174  /*
175  * Returns true if the `typeId` is same or or a subclass of
176  * `targetTypeId`.
177  */
178  static bool TypeIdIsA(int typeId, int targetTypeId);
179 
186  static int GetCommonBaseTypeId(int typeA, int typeB);
187 
188 protected:
189  vtkDataObjectTypes() = default;
190  ~vtkDataObjectTypes() override = default;
191 
195  static int Validate();
196 
197 private:
198  vtkDataObjectTypes(const vtkDataObjectTypes&) = delete;
199  void operator=(const vtkDataObjectTypes&) = delete;
200 };
201 
202 #endif
static vtkDataObjectTypes * New()
static int Validate()
Method used to validate data object types, for testing purposes.
vtkDataObjectTypes()=default
static const char * GetClassNameFromTypeId(int typeId)
Given an int (as defined in vtkType.h) identifier for a class return it's classname.
static vtkDataObject * NewDataObject(int typeId)
Create (New) and return a data object of the given type id.
static bool TypeIdIsA(int typeId, int targetTypeId)
static int GetTypeIdFromClassName(const char *classname)
Given a data object classname, return it's int identified (as defined in vtkType.h)
~vtkDataObjectTypes() override=default
static vtkDataObject * NewDataObject(const char *classname)
Create (New) and return a data object of the given classname.
static int GetCommonBaseTypeId(int typeA, int typeB)
Given two data types, returns the closest common data type.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
general representation of visualization data
a simple class to control print indentation
Definition: vtkIndent.h:119
abstract base class for most VTK objects
Definition: vtkObject.h:82