VTK
vtkRenderPassCollection.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkRenderPassCollection.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 =========================================================================*/
29 #ifndef __vtkRenderPassCollection_h
30 #define __vtkRenderPassCollection_h
31 
32 #include "vtkCollection.h"
33 
34 class vtkRenderPass;
35 
37 {
38  public:
39  static vtkRenderPassCollection *New();
41  void PrintSelf(ostream& os, vtkIndent indent);
42 
44  void AddItem(vtkRenderPass *pass);
45 
47  vtkRenderPass *GetNextRenderPass();
48 
50  vtkRenderPass *GetLastRenderPass();
51 
52  //BTX
54 
56  vtkRenderPass *GetNextRenderPass(vtkCollectionSimpleIterator &cookie);
57  //ETX
59 
60 protected:
63 
64 private:
65  // hide the standard AddItem from the user and the compiler.
66  void AddItem(vtkObject *o);
67 
68 private:
69  vtkRenderPassCollection(const vtkRenderPassCollection&); // Not implemented.
70  void operator=(const vtkRenderPassCollection&); // Not implemented.
71 };
72 
73 #endif
void * vtkCollectionSimpleIterator
Definition: vtkCollection.h:46
abstract base class for most VTK objects
Definition: vtkObject.h:60
void PrintSelf(ostream &os, vtkIndent indent)
a simple class to control print indentation
Definition: vtkIndent.h:37
static vtkCollection * New()
#define VTK_RENDERING_EXPORT
void AddItem(vtkObject *)
create and manipulate unsorted lists of objects
Definition: vtkCollection.h:51
a list of RenderPasses
Perform part of the rendering of a vtkRenderer.
Definition: vtkRenderPass.h:53