00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkQuadratureSchemeDictionaryGenerator.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 =========================================================================*/ 00032 #ifndef vtkQuadratureSchemeDictionaryGenerator_h 00033 #define vtkQuadratureSchemeDictionaryGenerator_h 00034 00035 #include "vtkDataSetAlgorithm.h" 00036 00037 class vtkPolyData; 00038 class vtkUnstructuredGrid; 00039 class vtkInformation; 00040 class vtkInformationVector; 00041 00042 class VTK_GRAPHICS_EXPORT vtkQuadratureSchemeDictionaryGenerator : public vtkDataSetAlgorithm 00043 { 00044 public: 00045 vtkTypeMacro(vtkQuadratureSchemeDictionaryGenerator,vtkDataSetAlgorithm); 00046 void PrintSelf(ostream& os, vtkIndent indent); 00047 static vtkQuadratureSchemeDictionaryGenerator *New(); 00048 00049 protected: 00050 int FillInputPortInformation(int port, vtkInformation *info); 00051 int FillOutputPortInformation(int port, vtkInformation *info); 00052 int RequestData(vtkInformation *req, vtkInformationVector **input, vtkInformationVector *output); 00053 vtkQuadratureSchemeDictionaryGenerator(); 00054 virtual ~vtkQuadratureSchemeDictionaryGenerator(); 00055 00056 private: 00057 vtkQuadratureSchemeDictionaryGenerator(const vtkQuadratureSchemeDictionaryGenerator &); // Not implemented 00058 void operator=(const vtkQuadratureSchemeDictionaryGenerator &); // Not implemented 00059 00061 00063 int Generate(vtkUnstructuredGrid *usgOut); 00064 }; 00066 00067 #endif