VTK
vtkSurfaceLICDefaultPainter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSurfaceLICDefaultPainter.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 __vtkSurfaceLICDefaultPainter_h
30 #define __vtkSurfaceLICDefaultPainter_h
31 
32 #include "vtkRenderingHybridOpenGLModule.h" // For export macro
33 #include "vtkDefaultPainter.h"
34 
36 
37 class VTKRENDERINGHYBRIDOPENGL_EXPORT vtkSurfaceLICDefaultPainter
38  : public vtkDefaultPainter
39 {
40 public:
43  void PrintSelf(ostream& os, vtkIndent indent);
44 
46 
47  void SetSurfaceLICPainter(vtkSurfaceLICPainter*);
48  vtkGetObjectMacro(SurfaceLICPainter, vtkSurfaceLICPainter);
50 
51 //BTX
52 protected:
55 
57  virtual void BuildPainterChain();
58 
60  virtual void ReportReferences(vtkGarbageCollector *collector);
61 
63 private:
64  vtkSurfaceLICDefaultPainter(const vtkSurfaceLICDefaultPainter&); // Not implemented.
65  void operator=(const vtkSurfaceLICDefaultPainter&); // Not implemented.
66 //ETX
67 };
68 
69 #endif