00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: $RCSfile: vtkOutlineFilter.h,v $ 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 __vtkOutlineFilter_h 00030 #define __vtkOutlineFilter_h 00031 00032 #include "vtkPolyDataAlgorithm.h" 00033 00034 class vtkOutlineSource; 00035 00036 class VTK_GRAPHICS_EXPORT vtkOutlineFilter : public vtkPolyDataAlgorithm 00037 { 00038 public: 00039 static vtkOutlineFilter *New(); 00040 vtkTypeRevisionMacro(vtkOutlineFilter,vtkPolyDataAlgorithm); 00041 00042 protected: 00043 vtkOutlineFilter(); 00044 ~vtkOutlineFilter(); 00045 00046 vtkOutlineSource *OutlineSource; 00047 virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00048 virtual int FillInputPortInformation(int port, vtkInformation *info); 00049 00050 private: 00051 vtkOutlineFilter(const vtkOutlineFilter&); // Not implemented. 00052 void operator=(const vtkOutlineFilter&); // Not implemented. 00053 }; 00054 00055 #endif