VTK
vtkCullerCollection.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCullerCollection.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
27 #ifndef vtkCullerCollection_h
28 #define vtkCullerCollection_h
29 
30 #include "vtkRenderingCoreModule.h" // For export macro
31 #include "vtkCollection.h"
32 #include "vtkCuller.h" // for inline functions
33 
34 class VTKRENDERINGCORE_EXPORT vtkCullerCollection : public vtkCollection
35 {
36  public:
37  static vtkCullerCollection *New();
39  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
40 
44  void AddItem(vtkCuller *a)
45  {
46  this->vtkCollection::AddItem(a);
47  }
48 
53  {
54  return static_cast<vtkCuller *>(this->GetNextItemAsObject());
55  }
56 
60  vtkCuller *GetLastItem();
61 
67  {
68  return static_cast<vtkCuller *>(this->GetNextItemAsObject(cookie));
69  }
70 
71 protected:
74 
75 private:
76  // hide the standard AddItem from the user and the compiler.
77  void AddItem(vtkObject *o)
78  {
79  this->vtkCollection::AddItem(o);
80  }
81 
82 private:
83  vtkCullerCollection(const vtkCullerCollection&) VTK_DELETE_FUNCTION;
84  void operator=(const vtkCullerCollection&) VTK_DELETE_FUNCTION;
85 };
86 
87 
88 inline vtkCuller *vtkCullerCollection::GetLastItem()
89 {
90  if ( this->Bottom == NULL )
91  {
92  return NULL;
93  }
94  else
95  {
96  return static_cast<vtkCuller *>(this->Bottom->Item);
97  }
98 }
99 
100 #endif
101 
102 
103 
104 
105 
void * vtkCollectionSimpleIterator
Definition: vtkCollection.h:47
vtkCuller * GetNextItem()
Get the next Culler in the list.
abstract base class for most VTK objects
Definition: vtkObject.h:59
a superclass for prop cullers
Definition: vtkCuller.h:40
a simple class to control print indentation
Definition: vtkIndent.h:39
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkCollection * New()
Construct with empty list.
void AddItem(vtkObject *)
Add an object to the list.
a list of Cullers
create and manipulate unsorted lists of objects
Definition: vtkCollection.h:51
vtkCuller * GetNextCuller(vtkCollectionSimpleIterator &cookie)
Reentrant safe way to get an object in a collection.
void AddItem(vtkCuller *a)
Add an Culler to the list.
vtkObject * GetNextItemAsObject()
Get the next item in the collection.