VTK  9.0.1
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 =========================================================================*/
29 #ifndef vtkLongArray_h
30 #define vtkLongArray_h
31 
32 #include "vtkAOSDataArrayTemplate.h" // Real Superclass
33 #include "vtkCommonCoreModule.h" // For export macro
34 #include "vtkDataArray.h"
35 
36 // Fake the superclass for the wrappers.
37 #ifndef __VTK_WRAP__
38 #define vtkDataArray vtkAOSDataArrayTemplate<long>
39 #endif
40 class VTKCOMMONCORE_EXPORT vtkLongArray : public vtkDataArray
41 {
42 public:
43  vtkTypeMacro(vtkLongArray, vtkDataArray);
44 #ifndef __VTK_WRAP__
45 #undef vtkDataArray
46 #endif
47  static vtkLongArray* New();
48  void PrintSelf(ostream& os, vtkIndent indent) override;
49 
50  // This macro expands to the set of method declarations that
51  // make up the interface of vtkAOSDataArrayTemplate, which is ignored
52  // by the wrappers.
53 #if defined(__VTK_WRAP__) || defined(__WRAP_GCCXML__)
55 #endif
56 
61  {
62  return static_cast<vtkLongArray*>(Superclass::FastDownCast(source));
63  }
64 
68  static long GetDataTypeValueMin() { return VTK_LONG_MIN; }
69 
73  static long GetDataTypeValueMax() { return VTK_LONG_MAX; }
74 
75 protected:
77  ~vtkLongArray() override;
78 
79 private:
81 
82  vtkLongArray(const vtkLongArray&) = delete;
83  void operator=(const vtkLongArray&) = delete;
84 };
85 
86 // Define vtkArrayDownCast implementation:
88 
89 #endif
Abstract superclass for all arrays.
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:50
a simple class to control print indentation
Definition: vtkIndent.h:34
dynamic, self-adjusting array of long
Definition: vtkLongArray.h:41
static long GetDataTypeValueMin()
Get the minimum data value in its native type.
Definition: vtkLongArray.h:68
static vtkLongArray * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkLongArray() override
static vtkLongArray * FastDownCast(vtkAbstractArray *source)
A faster alternative to SafeDownCast for downcasting vtkAbstractArrays.
Definition: vtkLongArray.h:60
static long GetDataTypeValueMax()
Get the maximum data value in its native type.
Definition: vtkLongArray.h:73
#define vtkCreateWrappedArrayInterface(T)
boost::graph_traits< vtkGraph * >::vertex_descriptor source(boost::graph_traits< vtkGraph * >::edge_descriptor e, vtkGraph *)
vtkArrayDownCast_FastCastMacro(vtkLongArray)
#define VTK_LONG_MAX
Definition: vtkType.h:159
#define VTK_LONG_MIN
Definition: vtkType.h:158