VTK
vtkImageRenderManager.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageRenderManager.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 =========================================================================*/
32 #ifndef vtkImageRenderManager_h
33 #define vtkImageRenderManager_h
34 
35 #include "vtkRenderingParallelModule.h" // For export macro
37 
38 class VTKRENDERINGPARALLEL_EXPORT vtkImageRenderManager : public vtkParallelRenderManager
39 {
40 public:
42  static vtkImageRenderManager *New();
43  virtual void PrintSelf(ostream &os, vtkIndent indent);
44 
45 protected:
48 
49  virtual void PreRenderProcessing();
50  virtual void PostRenderProcessing();
51 
52 private:
53  vtkImageRenderManager(const vtkImageRenderManager &);//Not implemented
54  void operator=(const vtkImageRenderManager &); //Not implemented
55 };
56 
57 #endif //vtkImageRenderManager_h
An object to control parallel rendering.
An object to control sort-first parallel rendering.
a simple class to control print indentation
Definition: vtkIndent.h:38
virtual void PreRenderProcessing()=0
virtual void PostRenderProcessing()=0
static vtkObject * New()
virtual void PrintSelf(ostream &os, vtkIndent indent)