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 //=============================================================================
33 #ifndef vtkmGradient_h
34 #define vtkmGradient_h
35 
36 #include "vtkAcceleratorsVTKmModule.h" //required for correct implementation
37 #include "vtkGradientFilter.h"
38 
39 class VTKACCELERATORSVTKM_EXPORT vtkmGradient : public vtkGradientFilter
40 {
41 public:
43  void PrintSelf(ostream& os, vtkIndent indent) override;
44  static vtkmGradient* New();
45 
46 protected:
47  vtkmGradient();
48  ~vtkmGradient();
49 
50 
51  virtual int RequestData(vtkInformation*, vtkInformationVector**,
52  vtkInformationVector*) override;
53 
54 private:
55  vtkmGradient(const vtkmGradient&) = delete;
56  void operator=(const vtkmGradient&) = delete;
57 };
58 
59 #endif // vtkmGradient_h
60 // VTK-HeaderTest-Exclude: vtkmGradient.h
Store vtkAlgorithm input/output information.
a simple class to control print indentation
Definition: vtkIndent.h:39
A general filter for gradient estimation.
Definition: vtkmGradient.h:39
A general filter for gradient estimation.
Store zero or more vtkInformation instances.