VTK  9.5.20250805
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
18VTK_ABI_NAMESPACE_BEGIN
19class VTKFILTERSGENERAL_EXPORT vtkFiniteElementFieldDistributor
21{
22public:
25 void PrintSelf(ostream& os, vtkIndent indent) override;
26
27protected:
30
31 // vtkAlgorithm interface
33
34private:
36 void operator=(const vtkFiniteElementFieldDistributor&) = delete;
37
38 class vtkInternals;
39 std::unique_ptr<vtkInternals> Internals;
40};
41
42VTK_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:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Superclass for algorithms that produce vtkPartitionedDataSetCollectionAlgorithm.