VTK  9.5.20251215
vtkDataObjectCollection.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
13
14#ifndef vtkDataObjectCollection_h
15#define vtkDataObjectCollection_h
16
17#include "vtkCollection.h"
18#include "vtkCommonDataModelModule.h" // For export macro
19
20#include "vtkDataObject.h" // Needed for inline methods
21
22VTK_ABI_NAMESPACE_BEGIN
23class VTKCOMMONDATAMODEL_EXPORT vtkDataObjectCollection : public vtkCollection
24{
25public:
28 void PrintSelf(ostream& os, vtkIndent indent) override;
29
34
38 vtkDataObject* GetNextItem() { return static_cast<vtkDataObject*>(this->GetNextItemAsObject()); }
39
43 vtkDataObject* GetItem(int i) { return static_cast<vtkDataObject*>(this->GetItemAsObject(i)); }
44
50 {
51 return static_cast<vtkDataObject*>(this->GetNextItemAsObject(cookie));
52 }
53
54protected:
56 ~vtkDataObjectCollection() override = default;
57
58private:
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 vtkDataObjectCollection&) = delete;
64};
65
66VTK_ABI_NAMESPACE_END
67#endif
void AddItem(vtkObject *)
Add an object to the bottom of the list.
vtkObject * GetItemAsObject(int i) VTK_FUTURE_CONST
Get the i'th item in the collection.
vtkObject * GetNextItemAsObject()
Get the next item in the collection.
maintain an unordered list of data objects
void AddItem(vtkDataObject *ds)
Add a data object to the bottom of the list.
~vtkDataObjectCollection() override=default
vtkDataObject * GetNextDataObject(vtkCollectionSimpleIterator &cookie)
Reentrant safe way to get an object in a collection.
vtkDataObject * GetItem(int i)
Get the ith data object in the list.
vtkDataObject * GetNextItem()
Get the next data object in the list.
vtkDataObjectCollection()=default
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkDataObjectCollection * New()
general representation of visualization data
a simple class to control print indentation
Definition vtkIndent.h:108
void * vtkCollectionSimpleIterator