VTK  9.3.0
vtkCharArray.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
37#ifndef vtkCharArray_h
38#define vtkCharArray_h
39
40#include "vtkAOSDataArrayTemplate.h" // Real Superclass
41#include "vtkCommonCoreModule.h" // For export macro
42#include "vtkDataArray.h"
43
44// Fake the superclass for the wrappers.
45#ifndef __VTK_WRAP__
46#define vtkDataArray vtkAOSDataArrayTemplate<char>
47#endif
48VTK_ABI_NAMESPACE_BEGIN
49class VTKCOMMONCORE_EXPORT vtkCharArray : public vtkDataArray
50{
51public:
52 vtkTypeMacro(vtkCharArray, vtkDataArray);
53#ifndef __VTK_WRAP__
54#undef vtkDataArray
55#endif
56 static vtkCharArray* New();
58 void PrintSelf(ostream& os, vtkIndent indent) override;
59
60 // This macro expands to the set of method declarations that
61 // make up the interface of vtkAOSDataArrayTemplate, which is ignored
62 // by the wrappers.
63#if defined(__VTK_WRAP__) || defined(__WRAP_GCCXML__)
65#endif
66
71 {
72 return static_cast<vtkCharArray*>(Superclass::FastDownCast(source));
73 }
74
78 static char GetDataTypeValueMin() { return VTK_CHAR_MIN; }
79
83 static char GetDataTypeValueMax() { return VTK_CHAR_MAX; }
84
85protected:
87 ~vtkCharArray() override;
88
89private:
91
92 vtkCharArray(const vtkCharArray&) = delete;
93 void operator=(const vtkCharArray&) = delete;
94};
95
96// Define vtkArrayDownCast implementation:
98
99VTK_ABI_NAMESPACE_END
100#endif
Array-Of-Structs implementation of vtkGenericDataArray.
Abstract superclass for all arrays.
dynamic, self-adjusting array of char
static vtkCharArray * New()
static char GetDataTypeValueMin()
Get the minimum data value in its native type.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkCharArray * FastDownCast(vtkAbstractArray *source)
A faster alternative to SafeDownCast for downcasting vtkAbstractArrays.
~vtkCharArray() override
static char GetDataTypeValueMax()
Get the maximum data value in its native type.
static vtkCharArray * ExtendedNew()
abstract superclass for arrays of numeric data
a simple class to control print indentation
Definition vtkIndent.h:38
#define vtkCreateWrappedArrayInterface(T)
#define vtkArrayDownCast_FastCastMacro(ArrayT)
This macro is used to tell vtkArrayDownCast to use FastDownCast instead of SafeDownCast.
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
#define VTK_CHAR_MIN
Definition vtkType.h:132
#define VTK_CHAR_MAX
Definition vtkType.h:133