VTK  9.3.0
vtkFiniteElementFieldDistributor.h
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2 // SPDX-License-Identifier: BSD-3-Clause
10 #ifndef vtkFiniteElementFieldDistributor_h
11 #define vtkFiniteElementFieldDistributor_h
12 
13 #include "vtkFiltersGeneralModule.h" // For export macro
15 
16 #include <memory> // for std::unique_ptr
17 
18 VTK_ABI_NAMESPACE_BEGIN
19 class VTKFILTERSGENERAL_EXPORT vtkFiniteElementFieldDistributor
21 {
22 public:
25  void PrintSelf(ostream& os, vtkIndent indent) override;
26 
27 protected:
30 
31  // vtkAlgorithm interface
33 
34 private:
36  void operator=(const vtkFiniteElementFieldDistributor&) = delete;
37 
38  class vtkInternals;
39  std::unique_ptr<vtkInternals> Internals;
40 };
41 
42 VTK_ABI_NAMESPACE_END
43 #endif
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
static vtkFiniteElementFieldDistributor * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Methods for subclasses to override to handle different pipeline requests.
a simple class to control print indentation
Definition: vtkIndent.h:29
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce vtkPartitionedDataSetCollectionAlgorithm.