VTK
vtkImageDivergence.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkImageDivergence.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
29 #ifndef __vtkImageDivergence_h
30 #define __vtkImageDivergence_h
31 
33 
35 {
36 public:
37  static vtkImageDivergence *New();
39 
40 protected:
43 
47  virtual int RequestInformation (vtkInformation*,
50  void ThreadedExecute (vtkImageData *inData, vtkImageData *outData,
51  int ext[6], int id);
52 
53 private:
54  vtkImageDivergence(const vtkImageDivergence&); // Not implemented.
55  void operator=(const vtkImageDivergence&); // Not implemented.
56 };
57 
58 #endif
59 
60 
61