VTK
vtkmGradient.h
Go to the documentation of this file.
1 //=============================================================================
2 //
3 // Copyright (c) Kitware, Inc.
4 // All rights reserved.
5 // See LICENSE.txt for details.
6 //
7 // This software is distributed WITHOUT ANY WARRANTY; without even
8 // the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
9 // PURPOSE. See the above copyright notice for more information.
10 //
11 // Copyright 2012 Sandia Corporation.
12 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
13 // the U.S. Government retains certain rights in this software.
14 //
15 //=============================================================================
16 
17 #ifndef vtkmGradient_h
18 #define vtkmGradient_h
19 
20 #include "vtkAcceleratorsVTKmModule.h" //required for correct implementation
21 #include "vtkGradientFilter.h"
22 
23 class VTKACCELERATORSVTKM_EXPORT vtkmGradient : public vtkGradientFilter
24 {
25 public:
27  void PrintSelf(ostream& os, vtkIndent indent) VTK_OVERRIDE;
28  static vtkmGradient* New();
29 
30 protected:
31  vtkmGradient();
32  ~vtkmGradient();
33 
34 
35  virtual int RequestData(vtkInformation*, vtkInformationVector**,
36  vtkInformationVector*) VTK_OVERRIDE;
37 
38 private:
39  vtkmGradient(const vtkmGradient&) VTK_DELETE_FUNCTION;
40  void operator=(const vtkmGradient&) VTK_DELETE_FUNCTION;
41 };
42 
43 #endif // vtkmGradient_h
44 // VTK-HeaderTest-Exclude: vtkmGradient.h
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:33
A general filter for gradient estimation.
Store zero or more vtkInformation instances.