VTK  9.3.20240419
vtkIdListCollection.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
14 #ifndef vtkIdListCollection_h
15 #define vtkIdListCollection_h
16 
17 #include "vtkCollection.h"
18 #include "vtkCommonCoreModule.h" // For export macro
19 
20 #include "vtkIdList.h" // Needed for inline methods
21 
22 VTK_ABI_NAMESPACE_BEGIN
23 class VTKCOMMONCORE_EXPORT vtkIdListCollection : public vtkCollection
24 {
25 public:
28  void PrintSelf(ostream& os, vtkIndent indent) override;
29 
33  void AddItem(vtkIdList* ds) { this->vtkCollection::AddItem(ds); }
34 
38  vtkIdList* GetNextItem() { return static_cast<vtkIdList*>(this->GetNextItemAsObject()); }
39 
43  vtkIdList* GetItem(int i) { return static_cast<vtkIdList*>(this->GetItemAsObject(i)); }
44 
50  {
51  return static_cast<vtkIdList*>(this->GetNextItemAsObject(cookie));
52  }
53 
54 protected:
55  vtkIdListCollection() = default;
56  ~vtkIdListCollection() override = default;
57 
58 private:
59  // hide the standard AddItem from the user and the compiler.
60  void AddItem(vtkObject* o) { this->vtkCollection::AddItem(o); }
61 
63  void operator=(const vtkIdListCollection&) = delete;
64 };
65 
66 VTK_ABI_NAMESPACE_END
67 #endif
create and manipulate ordered lists of objects
Definition: vtkCollection.h:46
vtkObject * GetItemAsObject(int i)
Get the i'th item in the collection.
void AddItem(vtkObject *)
Add an object to the bottom of the list.
vtkObject * GetNextItemAsObject()
Get the next item in the collection.
maintain an ordered list of IdList objects
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
void AddItem(vtkIdList *ds)
Add an IdList to the bottom of the list.
vtkIdList * GetItem(int i)
Get the ith IdList in the list.
vtkIdList * GetNextItem()
Get the next IdList in the list.
~vtkIdListCollection() override=default
vtkIdListCollection()=default
vtkIdList * GetNextIdList(vtkCollectionSimpleIterator &cookie)
Reentrant safe way to get an object in a collection.
static vtkIdListCollection * New()
list of point or cell ids
Definition: vtkIdList.h:133
a simple class to control print indentation
Definition: vtkIndent.h:108
abstract base class for most VTK objects
Definition: vtkObject.h:162
void * vtkCollectionSimpleIterator
Definition: vtkCollection.h:41