VTK
|
00001 /*========================================================================= 00002 00003 Program: Visualization Toolkit 00004 Module: vtkOverlappingAMRAlgorithm.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 =========================================================================*/ 00025 #ifndef VTKOVERLAPPINGAMRALGORITHM_H_ 00026 #define VTKOVERLAPPINGAMRALGORITHM_H_ 00027 00028 #include "vtkCommonExecutionModelModule.h" // For export macro 00029 #include "vtkUniformGridAMRAlgorithm.h" 00030 00031 class vtkOverlappingAMR; 00032 class vtkInformation; 00033 00034 class VTKCOMMONEXECUTIONMODEL_EXPORT vtkOverlappingAMRAlgorithm : 00035 public vtkUniformGridAMRAlgorithm 00036 { 00037 public: 00038 static vtkOverlappingAMRAlgorithm* New(); 00039 vtkTypeMacro(vtkOverlappingAMRAlgorithm,vtkUniformGridAMRAlgorithm); 00040 void PrintSelf(ostream& os, vtkIndent indent); 00041 00043 00044 vtkOverlappingAMR* GetOutput(); 00045 vtkOverlappingAMR* GetOutput(int); 00047 00048 protected: 00049 vtkOverlappingAMRAlgorithm(); 00050 virtual ~vtkOverlappingAMRAlgorithm(); 00051 00053 00054 virtual int FillOutputPortInformation(int port, vtkInformation* info); 00055 virtual int FillInputPortInformation(int port, vtkInformation* info); 00057 00058 private: 00059 vtkOverlappingAMRAlgorithm(const vtkOverlappingAMRAlgorithm&); // Not implemented 00060 void operator=(const vtkOverlappingAMRAlgorithm&); // Not implemented 00061 }; 00062 00063 #endif /* VTKOVERLAPPINGAMRALGORITHM_H_ */