VTK
|
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 "vtkFiltersGeneralModule.h" // For export macro 00036 #include "vtkDataSetAlgorithm.h" 00037 00038 class vtkPolyData; 00039 class vtkUnstructuredGrid; 00040 class vtkInformation; 00041 class vtkInformationVector; 00042 00043 class VTKFILTERSGENERAL_EXPORT vtkQuadratureSchemeDictionaryGenerator : public vtkDataSetAlgorithm 00044 { 00045 public: 00046 vtkTypeMacro(vtkQuadratureSchemeDictionaryGenerator,vtkDataSetAlgorithm); 00047 void PrintSelf(ostream& os, vtkIndent indent); 00048 static vtkQuadratureSchemeDictionaryGenerator *New(); 00049 00050 protected: 00051 int FillInputPortInformation(int port, vtkInformation *info); 00052 int FillOutputPortInformation(int port, vtkInformation *info); 00053 int RequestData(vtkInformation *req, vtkInformationVector **input, vtkInformationVector *output); 00054 vtkQuadratureSchemeDictionaryGenerator(); 00055 virtual ~vtkQuadratureSchemeDictionaryGenerator(); 00056 00057 private: 00058 vtkQuadratureSchemeDictionaryGenerator(const vtkQuadratureSchemeDictionaryGenerator &); // Not implemented 00059 void operator=(const vtkQuadratureSchemeDictionaryGenerator &); // Not implemented 00060 00062 00064 int Generate(vtkUnstructuredGrid *usgOut); 00065 }; 00067 00068 #endif