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 "vtkDefaultPainter.h" 00033 00034 class vtkSurfaceLICPainter; 00035 00036 class VTK_RENDERING_EXPORT vtkSurfaceLICDefaultPainter : public vtkDefaultPainter 00037 { 00038 public: 00039 static vtkSurfaceLICDefaultPainter* New(); 00040 vtkTypeMacro(vtkSurfaceLICDefaultPainter, vtkDefaultPainter); 00041 void PrintSelf(ostream& os, vtkIndent indent); 00042 00044 00045 void SetSurfaceLICPainter(vtkSurfaceLICPainter*); 00046 vtkGetObjectMacro(SurfaceLICPainter, vtkSurfaceLICPainter); 00048 00049 //BTX 00050 protected: 00051 vtkSurfaceLICDefaultPainter(); 00052 ~vtkSurfaceLICDefaultPainter(); 00053 00055 virtual void BuildPainterChain(); 00056 00058 virtual void ReportReferences(vtkGarbageCollector *collector); 00059 00060 vtkSurfaceLICPainter* SurfaceLICPainter; 00061 private: 00062 vtkSurfaceLICDefaultPainter(const vtkSurfaceLICDefaultPainter&); // Not implemented. 00063 void operator=(const vtkSurfaceLICDefaultPainter&); // Not implemented. 00064 //ETX 00065 }; 00066 00067 #endif