00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00023 #ifndef __vtkUnsignedLongLongArray_h
00024 #define __vtkUnsignedLongLongArray_h
00025
00026
00027 #if !defined(__vtkUnsignedLongLongArray_cxx)
00028 # define VTK_DATA_ARRAY_TEMPLATE_TYPE unsigned long long
00029 #endif
00030
00031 #include "vtkDataArray.h"
00032 #include "vtkDataArrayTemplate.h"
00033
00034
00035 #define vtkDataArray vtkDataArrayTemplate<unsigned long long>
00036 class VTK_COMMON_EXPORT vtkUnsignedLongLongArray : public vtkDataArray
00037 #undef vtkDataArray
00038 {
00039 public:
00040 static vtkUnsignedLongLongArray* New();
00041 vtkTypeRevisionMacro(vtkUnsignedLongLongArray,vtkDataArray);
00042 void PrintSelf(ostream& os, vtkIndent indent);
00043
00045
00046 int GetDataType()
00047 { return VTK_UNSIGNED_LONG_LONG; }
00049
00051
00052 void GetTupleValue(vtkIdType i, unsigned long long* tuple)
00053 { this->RealSuperclass::GetTupleValue(i, tuple); }
00055
00057
00058 void SetTupleValue(vtkIdType i, const unsigned long long* tuple)
00059 { this->RealSuperclass::SetTupleValue(i, tuple); }
00061
00063
00065 void InsertTupleValue(vtkIdType i, const unsigned long long* tuple)
00066 { this->RealSuperclass::InsertTupleValue(i, tuple); }
00068
00070
00072 vtkIdType InsertNextTupleValue(const unsigned long long* tuple)
00073 { return this->RealSuperclass::InsertNextTupleValue(tuple); }
00075
00077
00078 unsigned long long GetValue(vtkIdType id)
00079 { return this->RealSuperclass::GetValue(id); }
00081
00083
00085 void SetValue(vtkIdType id, unsigned long long value)
00086 { this->RealSuperclass::SetValue(id, value); }
00088
00090
00093 void SetNumberOfValues(vtkIdType number)
00094 { this->RealSuperclass::SetNumberOfValues(number); }
00096
00098
00099 void InsertValue(vtkIdType id, unsigned long long f)
00100 { this->RealSuperclass::InsertValue(id, f); }
00102
00104
00106 vtkIdType InsertNextValue(unsigned long long f)
00107 { return this->RealSuperclass::InsertNextValue(f); }
00109
00111
00114 unsigned long long* WritePointer(vtkIdType id, vtkIdType number)
00115 { return this->RealSuperclass::WritePointer(id, number); }
00117
00119
00121 unsigned long long* GetPointer(vtkIdType id)
00122 { return this->RealSuperclass::GetPointer(id); }
00124
00126
00132 void SetArray(unsigned long long* array, vtkIdType size, int save)
00133 { this->RealSuperclass::SetArray(array, size, save); }
00135
00136 protected:
00137 vtkUnsignedLongLongArray(vtkIdType numComp=1);
00138 ~vtkUnsignedLongLongArray();
00139
00140 private:
00141
00142 typedef vtkDataArrayTemplate<unsigned long long> RealSuperclass;
00143
00144 vtkUnsignedLongLongArray(const vtkUnsignedLongLongArray&);
00145 void operator=(const vtkUnsignedLongLongArray&);
00146 };
00147
00148 #endif