VTK  9.3.1
vtkLongLongArray.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
19 #ifndef vtkLongLongArray_h
20 #define vtkLongLongArray_h
21 
22 #include "vtkAOSDataArrayTemplate.h" // Real Superclass
23 #include "vtkCommonCoreModule.h" // For export macro
24 #include "vtkDataArray.h"
25 
26 // Fake the superclass for the wrappers.
27 #ifndef __VTK_WRAP__
28 #define vtkDataArray vtkAOSDataArrayTemplate<long long>
29 #endif
30 VTK_ABI_NAMESPACE_BEGIN
31 class VTKCOMMONCORE_EXPORT vtkLongLongArray : public vtkDataArray
32 {
33 public:
35 #ifndef __VTK_WRAP__
36 #undef vtkDataArray
37 #endif
38  static vtkLongLongArray* New();
39  static vtkLongLongArray* ExtendedNew();
40  void PrintSelf(ostream& os, vtkIndent indent) override;
41 
42  // This macro expands to the set of method declarations that
43  // make up the interface of vtkAOSDataArrayTemplate, which is ignored
44  // by the wrappers.
45 #if defined(__VTK_WRAP__) || defined(__WRAP_GCCXML__)
47 #endif
48 
53  {
54  return static_cast<vtkLongLongArray*>(Superclass::FastDownCast(source));
55  }
56 
60  static long long GetDataTypeValueMin() { return VTK_LONG_LONG_MIN; }
61 
65  static long long GetDataTypeValueMax() { return VTK_LONG_LONG_MAX; }
66 
67 protected:
69  ~vtkLongLongArray() override;
70 
71 private:
72  typedef vtkAOSDataArrayTemplate<long long> RealSuperclass;
73 
74  vtkLongLongArray(const vtkLongLongArray&) = delete;
75  void operator=(const vtkLongLongArray&) = delete;
76 };
77 
78 // Define vtkArrayDownCast implementation:
80 
81 VTK_ABI_NAMESPACE_END
82 #endif
vtkArrayDownCast_FastCastMacro(vtkLongLongArray)
dynamic, self-adjusting array of long long
Abstract superclass for all arrays.
#define vtkCreateWrappedArrayInterface(T)
static long long GetDataTypeValueMin()
Get the minimum data value in its native type.
#define VTK_LONG_LONG_MIN
Definition: vtkType.h:155
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
a simple class to control print indentation
Definition: vtkIndent.h:28
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:44
static long long GetDataTypeValueMax()
Get the maximum data value in its native type.
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
static vtkLongLongArray * FastDownCast(vtkAbstractArray *source)
A faster alternative to SafeDownCast for downcasting vtkAbstractArrays.
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
#define VTK_LONG_LONG_MAX
Definition: vtkType.h:156