00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00029 #ifndef __vtkIntArray_h
00030 #define __vtkIntArray_h
00031
00032
00033 #if !defined(__vtkIntArray_cxx) && (defined(VTK_USE_64BIT_IDS) || !defined(__vtkIdTypeArray_h))
00034 # define VTK_DATA_ARRAY_TEMPLATE_TYPE int
00035 #endif
00036
00037 #include "vtkDataArray.h"
00038 #include "vtkDataArrayTemplate.h"
00039
00040
00041 #define vtkDataArray vtkDataArrayTemplate<int>
00042 class VTK_COMMON_EXPORT vtkIntArray : public vtkDataArray
00043 #undef vtkDataArray
00044 {
00045 public:
00046 static vtkIntArray* New();
00047 vtkTypeMacro(vtkIntArray,vtkDataArray);
00048 void PrintSelf(ostream& os, vtkIndent indent);
00049
00051
00052 int GetDataType()
00053 { return VTK_INT; }
00055
00057
00058 void GetTupleValue(vtkIdType i, int* tuple)
00059 { this->RealSuperclass::GetTupleValue(i, tuple); }
00061
00063
00064 void SetTupleValue(vtkIdType i, const int* tuple)
00065 { this->RealSuperclass::SetTupleValue(i, tuple); }
00067
00069
00071 void InsertTupleValue(vtkIdType i, const int* tuple)
00072 { this->RealSuperclass::InsertTupleValue(i, tuple); }
00074
00076
00078 vtkIdType InsertNextTupleValue(const int* tuple)
00079 { return this->RealSuperclass::InsertNextTupleValue(tuple); }
00081
00083
00084 int GetValue(vtkIdType id)
00085 { return this->RealSuperclass::GetValue(id); }
00087
00089
00091 void SetValue(vtkIdType id, int value)
00092 { this->RealSuperclass::SetValue(id, value); }
00094
00096
00099 void SetNumberOfValues(vtkIdType number)
00100 { this->RealSuperclass::SetNumberOfValues(number); }
00102
00104
00105 void InsertValue(vtkIdType id, int f)
00106 { this->RealSuperclass::InsertValue(id, f); }
00108
00110
00112 vtkIdType InsertNextValue(int f)
00113 { return this->RealSuperclass::InsertNextValue(f); }
00115
00117
00119 int *GetValueRange(int comp)
00120 { return this->RealSuperclass::GetValueRange(comp); }
00121
00122 void GetValueRange(int range[2], int comp)
00123 { this->RealSuperclass::GetValueRange(range, comp); }
00124
00126
00128
00130 int *GetValueRange()
00131 { return this->RealSuperclass::GetValueRange(0); }
00132
00133 void GetValueRange(int range[2])
00134 { this->RealSuperclass::GetValueRange(range, 0); }
00135
00137
00139 static int GetDataTypeValueMin() { return VTK_INT_MIN; }
00140
00142 static int GetDataTypeValueMax() { return VTK_INT_MAX; }
00143
00145
00148 int* WritePointer(vtkIdType id, vtkIdType number)
00149 { return this->RealSuperclass::WritePointer(id, number); }
00151
00153
00155 int* GetPointer(vtkIdType id)
00156 { return this->RealSuperclass::GetPointer(id); }
00158
00160
00166 void SetArray(int* array, vtkIdType size, int save)
00167 { this->RealSuperclass::SetArray(array, size, save); }
00168 void SetArray(int* array, vtkIdType size, int save, int deleteMethod)
00169 { this->RealSuperclass::SetArray(array, size, save, deleteMethod); }
00171
00172 protected:
00173 vtkIntArray(vtkIdType numComp=1);
00174 ~vtkIntArray();
00175
00176 private:
00177
00178 typedef vtkDataArrayTemplate<int> RealSuperclass;
00179
00180 vtkIntArray(const vtkIntArray&);
00181 void operator=(const vtkIntArray&);
00182 };
00183
00184 #endif