VTK  9.2.6
vtkLongArray.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkLongArray.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 =========================================================================*/
32 #ifndef vtkLongArray_h
33 #define vtkLongArray_h
34 
35 #include "vtkAOSDataArrayTemplate.h" // Real Superclass
36 #include "vtkCommonCoreModule.h" // For export macro
37 #include "vtkDataArray.h"
38 
39 // Fake the superclass for the wrappers.
40 #ifndef __VTK_WRAP__
41 #define vtkDataArray vtkAOSDataArrayTemplate<long>
42 #endif
43 class VTKCOMMONCORE_EXPORT vtkLongArray : public vtkDataArray
44 {
45 public:
46  vtkTypeMacro(vtkLongArray, vtkDataArray);
47 #ifndef __VTK_WRAP__
48 #undef vtkDataArray
49 #endif
50  static vtkLongArray* New();
51  static vtkLongArray* ExtendedNew();
52  void PrintSelf(ostream& os, vtkIndent indent) override;
53 
54  // This macro expands to the set of method declarations that
55  // make up the interface of vtkAOSDataArrayTemplate, which is ignored
56  // by the wrappers.
57 #if defined(__VTK_WRAP__) || defined(__WRAP_GCCXML__)
59 #endif
60 
65  {
66  return static_cast<vtkLongArray*>(Superclass::FastDownCast(source));
67  }
68 
72  static long GetDataTypeValueMin() { return VTK_LONG_MIN; }
73 
77  static long GetDataTypeValueMax() { return VTK_LONG_MAX; }
78 
79 protected:
80  vtkLongArray();
81  ~vtkLongArray() override;
82 
83 private:
84  typedef vtkAOSDataArrayTemplate<long> RealSuperclass;
85 
86  vtkLongArray(const vtkLongArray&) = delete;
87  void operator=(const vtkLongArray&) = delete;
88 };
89 
90 // Define vtkArrayDownCast implementation:
92 
93 #endif
dynamic, self-adjusting array of long
Definition: vtkLongArray.h:43
Abstract superclass for all arrays.
#define vtkCreateWrappedArrayInterface(T)
vtkArrayDownCast_FastCastMacro(vtkLongArray)
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:39
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:55
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
#define VTK_LONG_MIN
Definition: vtkType.h:158
static long GetDataTypeValueMax()
Get the maximum data value in its native type.
Definition: vtkLongArray.h:77
static vtkLongArray * FastDownCast(vtkAbstractArray *source)
A faster alternative to SafeDownCast for downcasting vtkAbstractArrays.
Definition: vtkLongArray.h:64
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...
static long GetDataTypeValueMin()
Get the minimum data value in its native type.
Definition: vtkLongArray.h:72
#define VTK_LONG_MAX
Definition: vtkType.h:159