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
00054 #ifndef __vtkIdList_h
00055 #define __vtkIdList_h
00056
00057 #include "vtkObject.h"
00058
00059 class VTK_EXPORT vtkIdList : public vtkObject
00060 {
00061 public:
00062 static vtkIdList *New();
00063
00064 void Initialize();
00065 int Allocate(const int sz, const int strategy=0);
00066 vtkTypeMacro(vtkIdList,vtkObject);
00067 void PrintSelf(ostream& os, vtkIndent indent);
00068
00070 int GetNumberOfIds() {return this->NumberOfIds;};
00071
00073 int GetId(const int i) {return this->Ids[i];};
00074
00077 void SetNumberOfIds(const int number);
00078
00082 void SetId(const int i, const int id) {this->Ids[i] = id;};
00083
00086 void InsertId(const int i, const int id);
00087
00090 int InsertNextId(const int id);
00091
00094 int InsertUniqueId(const int id);
00095
00097 int *GetPointer(const int i) {return this->Ids + i;};
00098
00102 int *WritePointer(const int i, const int number);
00103
00105 void Reset() {this->NumberOfIds = 0;};
00106
00108 void Squeeze() {this->Resize(this->NumberOfIds);};
00109
00111 void DeepCopy(vtkIdList *ids);
00112
00115 void DeleteId(int id);
00116
00119 int IsId(int id);
00120
00123 void IntersectWith(vtkIdList& otherIds);
00124
00125 protected:
00126 vtkIdList();
00127 ~vtkIdList();
00128 vtkIdList(const vtkIdList&) {};
00129 void operator=(const vtkIdList&) {};
00130
00131 int NumberOfIds;
00132 int Size;
00133 int *Ids;
00134
00135 int *Resize(const int sz);
00136 };
00137
00138
00139 inline int vtkIdList::InsertNextId(const int id)
00140 {
00141 if ( this->NumberOfIds >= this->Size )
00142 {
00143 this->Resize(this->NumberOfIds+1);
00144 }
00145 this->Ids[this->NumberOfIds++] = id;
00146 return this->NumberOfIds-1;
00147 }
00148
00149 inline int vtkIdList::IsId(int id)
00150 {
00151 int *ptr, i;
00152 for (ptr=this->Ids, i=0; i<this->NumberOfIds; i++, ptr++)
00153 {
00154 if ( id == *ptr )
00155 {
00156 return i;
00157 }
00158 }
00159 return (-1);
00160 }
00161
00162 #endif