VTK
dox/Rendering/HybridOpenGL/vtkSurfaceLICDefaultPainter.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkSurfaceLICDefaultPainter.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00029 #ifndef __vtkSurfaceLICDefaultPainter_h
00030 #define __vtkSurfaceLICDefaultPainter_h
00031 
00032 #include "vtkRenderingHybridOpenGLModule.h" // For export macro
00033 #include "vtkDefaultPainter.h"
00034 
00035 class vtkSurfaceLICPainter;
00036 
00037 class VTKRENDERINGHYBRIDOPENGL_EXPORT vtkSurfaceLICDefaultPainter
00038   : public vtkDefaultPainter
00039 {
00040 public:
00041   static vtkSurfaceLICDefaultPainter* New();
00042   vtkTypeMacro(vtkSurfaceLICDefaultPainter, vtkDefaultPainter);
00043   void PrintSelf(ostream& os, vtkIndent indent);
00044 
00046 
00047   void SetSurfaceLICPainter(vtkSurfaceLICPainter*);
00048   vtkGetObjectMacro(SurfaceLICPainter, vtkSurfaceLICPainter);
00050 
00051 //BTX
00052 protected:
00053   vtkSurfaceLICDefaultPainter();
00054   ~vtkSurfaceLICDefaultPainter();
00055 
00057   virtual void BuildPainterChain();
00058 
00060   virtual void ReportReferences(vtkGarbageCollector *collector);
00061 
00062   vtkSurfaceLICPainter* SurfaceLICPainter;
00063 private:
00064   vtkSurfaceLICDefaultPainter(const vtkSurfaceLICDefaultPainter&); // Not implemented.
00065   void operator=(const vtkSurfaceLICDefaultPainter&); // Not implemented.
00066 //ETX
00067 };
00068 
00069 #endif