VTK  9.5.2
vtkCullerCollection.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
15#ifndef vtkCullerCollection_h
16#define vtkCullerCollection_h
17
18#include "vtkCollection.h"
19#include "vtkCuller.h" // for inline functions
20#include "vtkRenderingCoreModule.h" // For export macro
21#include "vtkWrappingHints.h" // For VTK_MARSHALAUTO
22
23VTK_ABI_NAMESPACE_BEGIN
24class VTKRENDERINGCORE_EXPORT VTK_MARSHALAUTO vtkCullerCollection : public vtkCollection
25{
26public:
29 void PrintSelf(ostream& os, vtkIndent indent) override;
30
35
39 vtkCuller* GetNextItem() { return static_cast<vtkCuller*>(this->GetNextItemAsObject()); }
40
44 vtkCuller* GetLastItem();
45
51 {
52 return static_cast<vtkCuller*>(this->GetNextItemAsObject(cookie));
53 }
54
55protected:
57 ~vtkCullerCollection() override = default;
58
59private:
60 // hide the standard AddItem from the user and the compiler.
61 void AddItem(vtkObject* o) { this->vtkCollection::AddItem(o); }
62
64 void operator=(const vtkCullerCollection&) = delete;
65};
66
68{
69 if (this->Bottom == nullptr)
70 {
71 return nullptr;
72 }
73 else
74 {
75 return static_cast<vtkCuller*>(this->Bottom->Item);
76 }
77}
78
79VTK_ABI_NAMESPACE_END
80#endif
vtkCollectionElement * Bottom
void AddItem(vtkObject *)
Add an object to the bottom of the list.
vtkObject * GetNextItemAsObject()
Get the next item in the collection.
an ordered list of Cullers
void AddItem(vtkCuller *a)
Add an Culler to the bottom of the list.
vtkCuller * GetNextItem()
Get the next Culler in the list.
vtkCuller * GetNextCuller(vtkCollectionSimpleIterator &cookie)
Reentrant safe way to get an object in a collection.
~vtkCullerCollection() override=default
static vtkCullerCollection * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
vtkCuller * GetLastItem()
Get the last Culler in the list.
vtkCullerCollection()=default
a superclass for prop cullers
Definition vtkCuller.h:31
a simple class to control print indentation
Definition vtkIndent.h:29
void * vtkCollectionSimpleIterator
#define VTK_MARSHALAUTO