00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00055 #ifndef __vtkAttributeData_h
00056 #define __vtkAttributeData_h
00057
00058 #include "vtkDataArray.h"
00059
00060 class VTK_EXPORT vtkAttributeData : public vtkObject
00061 {
00062 public:
00063 vtkTypeMacro(vtkAttributeData,vtkObject);
00064 void PrintSelf(ostream& os, vtkIndent indent);
00065
00067 virtual int Allocate(const int sz, const int ext=1000);
00068
00070 virtual void Initialize();
00071
00073 virtual vtkAttributeData *MakeObject() = 0;
00074
00081 virtual void SetData(vtkDataArray *);
00082 vtkDataArray *GetData() {return this->Data;};
00083
00086 virtual int GetDataType();
00087
00089 virtual void SetDataType(int dataType);
00090 void SetDataTypeToBit() {this->SetDataType(VTK_BIT);};
00091 void SetDataTypeToChar() {this->SetDataType(VTK_CHAR);};
00092 void SetDataTypeToUnsignedChar() {this->SetDataType(VTK_UNSIGNED_CHAR);};
00093 void SetDataTypeToShort() {this->SetDataType(VTK_SHORT);};
00094 void SetDataTypeToUnsignedShort() {this->SetDataType(VTK_UNSIGNED_SHORT);};
00095 void SetDataTypeToInt() {this->SetDataType(VTK_INT);};
00096 void SetDataTypeToUnsignedInt() {this->SetDataType(VTK_UNSIGNED_INT);};
00097 void SetDataTypeToLong() {this->SetDataType(VTK_LONG);};
00098 void SetDataTypeToUnsignedLong() {this->SetDataType(VTK_UNSIGNED_LONG);};
00099 void SetDataTypeToFloat() {this->SetDataType(VTK_FLOAT);};
00100 void SetDataTypeToDouble() {this->SetDataType(VTK_DOUBLE);};
00101
00104 void *GetVoidPointer(const int id) {return this->Data->GetVoidPointer(id);};
00105
00107 virtual void Squeeze() {this->Data->Squeeze();};
00108
00110 virtual void Reset() {this->Data->Reset();};
00111
00115 virtual void DeepCopy(vtkAttributeData *ad);
00116 virtual void ShallowCopy(vtkAttributeData *ad);
00117
00124 unsigned long GetActualMemorySize();
00125
00126 #ifndef VTK_REMOVE_LEGACY_CODE
00127
00128 void DeepCopy(vtkAttributeData &ad)
00129 {VTK_LEGACY_METHOD(DeepCopy,"3.2"); this->DeepCopy(&ad);}
00130 void ShallowCopy(vtkAttributeData &ad)
00131 {VTK_LEGACY_METHOD(ShallowCopy,"3.2"); this->ShallowCopy(&ad);}
00132 #endif
00133
00134 protected:
00135
00136
00137 vtkAttributeData();
00138 vtkAttributeData(int dataType);
00139 ~vtkAttributeData();
00140 vtkAttributeData(const vtkAttributeData&) {};
00141 void operator=(const vtkAttributeData&) {};
00142
00143 vtkDataArray *Data;
00144
00145 };
00146
00147
00148 #endif