VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkSMPContourGridManyPiece.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 =========================================================================*/ 00028 #ifndef vtkSMPContourGridManyPieces_h 00029 #define vtkSMPContourGridManyPieces_h 00030 00031 #include "vtkFiltersSMPModule.h" // For export macro 00032 #include "vtkContourGrid.h" 00033 00034 class vtkPolyData; 00035 00036 class VTKFILTERSSMP_EXPORT vtkSMPContourGridManyPieces : public vtkContourGrid 00037 { 00038 public: 00039 vtkTypeMacro(vtkSMPContourGridManyPieces,vtkContourGrid); 00040 void PrintSelf(ostream& os, vtkIndent indent); 00041 00043 static vtkSMPContourGridManyPieces *New(); 00044 00045 protected: 00046 vtkSMPContourGridManyPieces(); 00047 ~vtkSMPContourGridManyPieces(); 00048 00049 virtual int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *); 00050 00051 virtual int FillOutputPortInformation(int port, vtkInformation* info); 00052 00053 private: 00054 vtkSMPContourGridManyPieces(const vtkSMPContourGridManyPieces&); // Not implemented. 00055 void operator=(const vtkSMPContourGridManyPieces&); // Not implemented. 00056 }; 00057 00058 #endif