vtkTypeInt32Array.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
3 // .NAME vtkTypeInt32Array - dynamic, self-adjusting array of vtkTypeInt32
4 // .SECTION Description
5 // vtkTypeInt32Array is an array of values of type vtkTypeInt32. It
6 // provides methods for insertion and retrieval of values and will
7 // automatically resize itself to hold new data.
8 //
9 // This array should be preferred for data of type Int32 as this
10 // array will use the correct underlying datatype based on the desired number of bits
11 // and the current platform. The superclass of this type will change depending on the
12 // machine and compiler in use so that the data contained always uses the proper type.
13 
14 #ifndef vtkTypeInt32Array_h
15 #define vtkTypeInt32Array_h
16 
17 #include "vtkCommonCoreModule.h" // For export macro
18 #include "vtkType.h" // For native type selections.
19 
20 #if VTK_TYPE_INT32 == VTK_INT
21 # include "vtkIntArray.h"
22 # define vtkTypeArrayBase vtkIntArray
23 #endif
24 
25 
27 
29 {
30 public:
31  static vtkTypeInt32Array* New();
33  void PrintSelf(ostream& os, vtkIndent indent) override;
34 
35  // Description:
36  // A faster alternative to SafeDownCast for downcasting vtkAbstractArrays.
38  {
39  return static_cast<vtkTypeInt32Array*>(Superclass::FastDownCast(source));
40  }
41 
42 protected:
44  ~vtkTypeInt32Array() override;
45 
46 private:
47  vtkTypeInt32Array(const vtkTypeInt32Array&) = delete;
48  void operator=(const vtkTypeInt32Array&) = delete;
49 };
50 
51 // Define vtkArrayDownCast implementation:
53 
55 
56 #undef vtkTypeArrayBase
57 
58 #endif
59 /* VTK-HeaderTest-Exclude: INCLUDES */
#define VTKCOMMONCORE_EXPORT
vtkArrayDownCast_FastCastMacro(vtkTypeInt32Array)
#define VTK_ABI_NAMESPACE_END
#define VTK_ABI_NAMESPACE_BEGIN
static vtkTypeInt32Array * FastDownCast(vtkAbstractArray *source)
#define vtkTypeArrayBase