VTK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
vtk__Int64Array.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtk__Int64Array.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 =========================================================================*/
23 #ifndef __vtk__Int64Array_h
24 #define __vtk__Int64Array_h
25 
26 // Tell the template header how to give our superclass a DLL interface.
27 #if !defined(__vtk__Int64Array_cxx)
28 # define VTK_DATA_ARRAY_TEMPLATE_TYPE __int64
29 #endif
30 
31 #include "vtkCommonCoreModule.h" // For export macro
32 #include "vtkDataArray.h"
33 #include "vtkDataArrayTemplate.h" // Real Superclass
34 
35 // Fake the superclass for the wrappers.
36 #ifndef __WRAP__
37 #define vtkDataArray vtkDataArrayTemplate<__int64>
38 #endif
40 #ifndef __WRAP__
41 #undef vtkDataArray
42 #endif
43 {
44 public:
45  static vtk__Int64Array* New();
47  void PrintSelf(ostream& os, vtkIndent indent);
48 
49  // This macro expands to the set of method declarations that
50  // make up the interface of vtkDataArrayTemplate, which is ignored
51  // by the wrappers.
52 #ifdef __WRAP__
54 #endif
55 
57  static __int64 GetDataTypeValueMin() { return VTK___INT64_MIN; }
58 
60  static __int64 GetDataTypeValueMax() { return VTK___INT64_MAX; }
61 
62 protected:
63  vtk__Int64Array(vtkIdType numComp=1);
64  ~vtk__Int64Array();
65 
66 private:
67  //BTX
68  typedef vtkDataArrayTemplate<__int64> RealSuperclass;
69  //ETX
70  vtk__Int64Array(const vtk__Int64Array&); // Not implemented.
71  void operator=(const vtk__Int64Array&); // Not implemented.
72 };
73 
74 #endif
Implementation template for vtkDataArray.
#define VTKCOMMONCORE_EXPORT
static __int64 GetDataTypeValueMin()
static __int64 GetDataTypeValueMax()
int vtkIdType
Definition: vtkType.h:268
#define vtkCreateWrappedArrayInterface(T)
a simple class to control print indentation
Definition: vtkIndent.h:38
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:53
dynamic, self-adjusting array of __int64
void PrintSelf(ostream &os, vtkIndent indent)
static vtkObject * New()