VTK
dox/Common/ExecutionModel/vtkNonOverlappingAMRAlgorithm.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003  Program:   Visualization Toolkit
00004  Module:    vtkNonOverlappingAMRAlgorithm.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  =========================================================================*/
00022 #ifndef VTKNONOVERLAPPINGAMRALGORITHM_H_
00023 #define VTKNONOVERLAPPINGAMRALGORITHM_H_
00024 
00025 #include "vtkCommonExecutionModelModule.h" // For export macro
00026 #include "vtkUniformGridAMRAlgorithm.h"
00027 
00028 class vtkNonOverlappingAMR;
00029 class vtkInformation;
00030 
00031 class VTKCOMMONEXECUTIONMODEL_EXPORT vtkNonOverlappingAMRAlgorithm :
00032   public vtkUniformGridAMRAlgorithm
00033 {
00034   public:
00035     static vtkNonOverlappingAMRAlgorithm* New();
00036     vtkTypeMacro(vtkNonOverlappingAMRAlgorithm,vtkUniformGridAMRAlgorithm);
00037     void PrintSelf(ostream& os, vtkIndent indent);
00038 
00040 
00041     vtkNonOverlappingAMR* GetOutput();
00042     vtkNonOverlappingAMR* GetOutput(int);
00044 
00045   protected:
00046     vtkNonOverlappingAMRAlgorithm();
00047     virtual ~vtkNonOverlappingAMRAlgorithm();
00048 
00050 
00051     virtual int FillOutputPortInformation(int port, vtkInformation* info);
00052     virtual int FillInputPortInformation(int port, vtkInformation* info);
00054 
00055   private:
00056     vtkNonOverlappingAMRAlgorithm(const vtkNonOverlappingAMRAlgorithm&); // Not implemented
00057     void operator=(const vtkNonOverlappingAMRAlgorithm&); // Not implemented
00058 };
00059 
00060 #endif /* VTKNONOVERLAPPINGAMRALGORITHM_H_ */