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 =========================================================================*/
26 #ifndef vtkCullerCollection_h
27 #define vtkCullerCollection_h
28 
29 #include "vtkRenderingCoreModule.h" // For export macro
30 #include "vtkCollection.h"
31 #include "vtkCuller.h" // for inline functions
32 
34 {
35  public:
36  static vtkCullerCollection *New();
38  virtual void PrintSelf(ostream& os, vtkIndent indent);
39 
41 
42  void AddItem(vtkCuller *a)
43  {
44  this->vtkCollection::AddItem(a);
45  }
47 
49 
51  {
52  return static_cast<vtkCuller *>(this->GetNextItemAsObject());
53  }
55 
57  vtkCuller *GetLastItem();
58 
59  //BTX
61 
64  {
65  return static_cast<vtkCuller *>(this->GetNextItemAsObject(cookie));
66  }
67  //ETX
69 
70 protected:
73 
74 private:
75  // hide the standard AddItem from the user and the compiler.
76  void AddItem(vtkObject *o)
77  {
78  this->vtkCollection::AddItem(o);
79  }
80 
81 private:
82  vtkCullerCollection(const vtkCullerCollection&); // Not implemented.
83  void operator=(const vtkCullerCollection&); // Not implemented.
84 };
85 
86 
88 {
89  if ( this->Bottom == NULL )
90  {
91  return NULL;
92  }
93  else
94  {
95  return static_cast<vtkCuller *>(this->Bottom->Item);
96  }
97 }
98 
99 #endif
100 
101 
102 
103 
104 
void * vtkCollectionSimpleIterator
Definition: vtkCollection.h:47
abstract base class for most VTK objects
Definition: vtkObject.h:61
void PrintSelf(ostream &os, vtkIndent indent)
a superclass for prop cullers
Definition: vtkCuller.h:39
a simple class to control print indentation
Definition: vtkIndent.h:38
static vtkCollection * New()
vtkCollectionElement * Bottom
void AddItem(vtkObject *)
a list of Cullers
create and manipulate unsorted lists of objects
Definition: vtkCollection.h:52
vtkCuller * GetNextCuller(vtkCollectionSimpleIterator &cookie)
#define VTKRENDERINGCORE_EXPORT
void AddItem(vtkCuller *a)
vtkObject * GetNextItemAsObject()