VTK
vtkCompositePainter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkCompositePainter.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 =========================================================================*/
24 #ifndef __vtkCompositePainter_h
25 #define __vtkCompositePainter_h
26 
27 #include "vtkRenderingCoreModule.h" // For export macro
28 #include "vtkPainter.h"
29 
30 class VTKRENDERINGCORE_EXPORT vtkCompositePainter : public vtkPainter
31 {
32 public:
33  static vtkCompositePainter* New();
35  void PrintSelf(ostream& os, vtkIndent indent);
36 
39  virtual vtkDataObject* GetOutput();
40 
41 //BTX
42 protected:
45 
47  virtual void ReportReferences(vtkGarbageCollector *collector);
48 
50 
55  virtual void RenderInternal(vtkRenderer* renderer, vtkActor* actor,
56  unsigned long typeflags, bool forceCompileOnly);
58 
60 private:
61  vtkCompositePainter(const vtkCompositePainter&); // Not implemented.
62  void operator=(const vtkCompositePainter&); // Not implemented.
63 //ETX
64 };
65 
66 #endif
67 
68