VTK  9.1.0
vtkIdTypeArray.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkIdTypeArray.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=========================================================================*/
33#ifndef vtkIdTypeArray_h
34#define vtkIdTypeArray_h
35
36#include "vtkAOSDataArrayTemplate.h" // Real Superclass
37#include "vtkCommonCoreModule.h" // For export macro
38#include "vtkDataArray.h"
39
40// Fake the superclass for the wrappers.
41#ifndef __VTK_WRAP__
42#define vtkDataArray vtkAOSDataArrayTemplate<vtkIdType>
43#endif
44class VTKCOMMONCORE_EXPORT vtkIdTypeArray : public vtkDataArray
45{
46public:
48#ifndef __VTK_WRAP__
49#undef vtkDataArray
50#endif
53 void PrintSelf(ostream& os, vtkIndent indent) override;
54
55 // This macro expands to the set of method declarations that
56 // make up the interface of vtkAOSDataArrayTemplate, which is ignored
57 // by the wrappers.
58#if defined(__VTK_WRAP__) || defined(__WRAP_GCCXML__)
60#else
61
65 int GetDataType() const override
66 {
67 // This needs to overwritten from superclass because
68 // the templated superclass is not able to differentiate
69 // vtkIdType from a long long or an int since vtkIdType
70 // is simply a typedef. This means that
71 // vtkAOSDataArrayTemplate<vtkIdType> != vtkIdTypeArray.
72 return VTK_ID_TYPE;
73 }
74#endif
75
80 {
81 return static_cast<vtkIdTypeArray*>(Superclass::FastDownCast(source));
82 }
83
88
93
94protected:
96 ~vtkIdTypeArray() override;
97
98private:
100
101 vtkIdTypeArray(const vtkIdTypeArray&) = delete;
102 void operator=(const vtkIdTypeArray&) = delete;
103};
104
105// Define vtkArrayDownCast implementation:
107
108#endif
Abstract superclass for all arrays.
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:59
dynamic, self-adjusting array of vtkIdType
static vtkIdTypeArray * FastDownCast(vtkAbstractArray *source)
A faster alternative to SafeDownCast for downcasting vtkAbstractArrays.
static vtkIdType GetDataTypeValueMax()
Get the maximum data value in its native type.
int GetDataType() const override
Get the data type.
~vtkIdTypeArray() override
static vtkIdTypeArray * New()
static vtkIdTypeArray * ExtendedNew()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkIdType GetDataTypeValueMin()
Get the minimum data value in its native type.
a simple class to control print indentation
Definition: vtkIndent.h:43
#define vtkCreateWrappedArrayInterface(T)
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
vtkArrayDownCast_FastCastMacro(vtkIdTypeArray)
int vtkIdType
Definition: vtkType.h:332
#define VTK_ID_MAX
Definition: vtkType.h:336
#define VTK_ID_MIN
Definition: vtkType.h:335
#define VTK_ID_TYPE
Definition: vtkType.h:56