VTK  9.0.2
vtkSMPWarpVector.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkSMPWarpVector.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 =========================================================================*/
22 #ifndef vtkSMPWarpVector_h
23 #define vtkSMPWarpVector_h
24 
25 #include "vtkFiltersSMPModule.h" // For export macro
26 #include "vtkWarpVector.h"
27 
28 class vtkInformation;
30 
31 #if !defined(VTK_LEGACY_REMOVE)
32 class VTKFILTERSSMP_EXPORT vtkSMPWarpVector : public vtkWarpVector
33 {
34 public:
36  static vtkSMPWarpVector* New();
37  void PrintSelf(ostream& os, vtkIndent indent) override;
38 
39 protected:
41  ~vtkSMPWarpVector() override;
42 
47 
48 private:
49  vtkSMPWarpVector(const vtkSMPWarpVector&) = delete;
50  void operator=(const vtkSMPWarpVector&) = delete;
51 };
52 
53 #endif // VTK_LEGACY_REMOVE
54 #endif // vtkSMPWarpVector_h
a simple class to control print indentation
Definition: vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
multithreaded vtkWarpVector
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkSMPWarpVector() override
static vtkSMPWarpVector * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Overridden to use threads.
deform geometry with vector data
Definition: vtkWarpVector.h:33